Wordpress短代码在一个主题中不起作用

时间:2012-11-18 17:02:37

标签: wordpress shortcode

我开发了一个使用短代码的wordpress插件。 问题是它在这个主题中不起作用:

http://judopassion.com/wordpress/?p=274

我试过在functions.php中添加这一行,但无论如何都不行:

add_filter('the_excerpt', 'do_shortcode');

有什么问题?我是否要在主题上启用短代码API?怎么样? 感谢。

1 个答案:

答案 0 :(得分:0)

我使用的是get_the_content()方法,而不是the_content();

所以我必须修改;

do_shortcode(get_the_content());
相关问题