我在stackoverflow上找到了关于如何解决这个问题但是没有一个工作的帖子。我有Karma主题和wp-ecommerce。 WordPress通过<!-- html comments !-->
标记包裹了所有<p>
。
这些似乎不适用于我的functions.php文件。
remove_filter( 'the_content', 'wpautop' );
remove_filter('the_content', 'wptexturize');
答案 0 :(得分:3)
根据Codex,以下内容应该有效
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
但是,正如您所说,它不起作用,您可以使用NoAutoP或No WPautop插件删除p tags
。希望这些对您有用。
您也可以阅读this answer,也许对您有帮助。