Wordpress短代码显示代码本身而不是元​​素

时间:2018-02-13 13:25:18

标签: php wordpress

我安装了一个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"]

它在页面上显示代码本身

enter image description here

1 个答案:

答案 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 ); ?>