I want to be able to get some wordpress options with the shortcode from the post, something like this: [get_option posts_per_page]

Is there an easy way to do that?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

I think it is pretty easy

first, create a function that will handle the short code

 function handle_shortcode($para){
     //get_options
 }

secord, register the shortcode

add_shortcode('getOption', 'handle_shortcode');

then, use it in a post:

[getOption para="key"]

more details look at here: http://codex.wordpress.org/Shortcode_API

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.