要在小部件中显示短代码,请使用常规文本小部件,并将此行添加到主题的函数中。php文件:
// Use shortcodes in text widgets.
add_filter(\'widget_text\', \'do_shortcode\');
这告诉WordPress在小部件中呈现短代码。
如果你想用php调用你的短代码,你可以使用do_shortcode() 作用
// Use shortcode in a PHP file (outside the post editor).
do_shortcode(\'[video mp4="http://video-js.zencoder.com/oceans-clip.mp4"]\');
要更好地了解短代码,请查看
this tutorial 其中包括:什么是短代码,如何使用短代码,如何定义自己的短代码。以及如何在小部件中使用它们。
希望这有帮助