从安装插件到添加代码,我都试过了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标记。其他的保持不变。
我错过了什么?