Wordpress短信并插入标签p和br

时间:2013-04-06 23:19:55

标签: wordpress wordpress-theming shortcode

我在短代码中使用wordpress时遇到问题,我使用return来显示值,但问题仍然存在,短代码显示正常,但是<p><br&gt;标签在里面。

我的模板中的thext内容:

<div class="content">

[shortcode_poll="1"]

</div>

我尝试了所有,问题仍然存在。我使用一个插件来删除这些行,但它不起作用。

我也试过

 remove_filter( 'the_content', 'wpautop' ); remove_filter( 'the_excerpt', 'wpautop' );

如果你知道如何解决这个问题,请告诉我怎么做?

1 个答案:

答案 0 :(得分:0)

降低wpautop的优先级修复了这个问题(或者它至少对我有用)。将其添加到主题中的functions.php中。

remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'wpautop', 12 );