我使用的是Wordpress的最新更新,而不是Tiny MCE。
我找到了很多关于它的帖子,但每次都是来自以前版本(已关闭)的bug,或者链接到微型MCE。
我只在HTML中修改我的页面,因为我使用的是复杂的CSS和div。
每次我更新代码时$nbsp;
即使我删除标记之间的所有空格,甚至在开始时,也会到处添加。以下是一个示例:
before (这是页面的开头,前面没有空格或行<aside>
):
<aside class="alignleft" style="width: 375px;">[...]</aside><section>[...]
after:
$nbsp;
<aside class="alignleft" style="width: 375px;">[...]</aside>
$nbsp;
<section>[...]
和下一次更新
是重复的,下一个也是(2,4,8,16…)
我试图将此添加到函数中。php,但它不起作用:
remove_filter( \'the_content\', \'wpautop\' ); remove_filter( \'the_excerpt\', \'wpautop\' );