如何禁用WordPress放置P标签?

时间:2016-10-24 作者:floCoder

从安装插件到添加代码,我都试过了functions.php 但并没有阻止在WordPress站点中添加P标签。

/* Remove empty p tags */
remove_filter( \'the_content\', \'wpautop\' );
remove_filter( \'the_excerpt\', \'wpautop\' );
这个标签不起作用。

//Removes all empty p tags
$(\'p:empty\').remove();
此标记有效,但只删除了空的P标记。其他的保持不变。

我错过了什么?

1 个回复
SO网友:cowgill

这些是正确的过滤器。

确保将它们添加到活动主题的functions.php 文件

更新:根据下面的评论删除了筛选建议。

相关推荐