Wordpress get_option from shortcode

可紊 提交于 2019-12-09 03:38:29

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!