我安装了一个carousel插件,为我提供了一个简短的代码
" wcf"在gallery关键字之前,但遗憾的是 - 根本没有短代码可以与我合作
但这不起作用
[wcfgallery ids="149,148,147,146,145,144,138,132,133,139,140,141,135,136,142,143,137"]
这也行不通
[gallery ids="149,148,147,146,145,144,138,132,133,139,140,141,135,136,142,143,137"]
它在页面上显示代码本身
答案 0 :(得分:0)
如果您在文本小部件中使用短代码,请在functions.php中添加此脚本。
// Adding Shortcodes to the_excerpt() function
add_filter('the_excerpt', 'do_shortcode');
// Enable shortcodes in widgets
add_filter('widget_text', 'do_shortcode');
将the_content()
替换为此<?php echo apply_filters( 'the_content', $post->post_content ); ?>