0

我在简码中使用 wordpress 时遇到问题,我使用 return 来显示值,但问题仍然存在,简码显示正常,但其中的 are<p><br> 标签。

将 xt 的内容放入我的模板中:

<div class="content">

[shortcode_poll="1"]

</div>

我都试过了,问题依旧。我使用了一个插件来删除这些行,但它不起作用。

我也试过

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

如果您知道如何解决此问题,请告诉我如何解决?

4

1 回答 1

1

降低 wpautop 的优先级可以解决这个问题(或者至少对我有用)。将此添加到主题中的 functions.php 中。

remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'wpautop', 12 ); 
于 2013-11-09T13:04:46.243 回答