我希望能够通过帖子中的短代码获得一些wordpress选项,如下所示: [get_option posts_per_page]
有一种简单的方法吗?
答案 0 :(得分:1)
我认为这很容易
首先,创建一个处理短代码的函数
function handle_shortcode($para){
//get_options
}
secord,注册短代码
add_shortcode('getOption', 'handle_shortcode');
然后,在帖子中使用它:
[getOption para="key"]
更多细节请点击此处:http://codex.wordpress.org/Shortcode_API