WordPress在HTML注释后添加空的<p>标记</p>

时间:2012-07-28 00:14:50

标签: wordpress wordpress-plugin

我在stackoverflow上找到了关于如何解决这个问题但是没有一个工作的帖子。我有Karma主题和wp-ecommerce。 WordPress通过<!-- html comments !-->标记包裹了所有<p>

这些似乎不适用于我的functions.php文件。

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

1 个答案:

答案 0 :(得分:3)

根据Codex,以下内容应该有效

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

但是,正如您所说,它不起作用,您可以使用NoAutoPNo WPautop插件删除p tags。希望这些对您有用。

您也可以阅读this answer,也许对您有帮助。