我不确定是wordpress本身还是正在做的Tiny MCE。但是,当在HTML和Visual编辑器之间切换时,它会添加
,并且每次我来回切换时都会添加一个额外的内容。我什至没有代码中的换行符,似乎在某种程度上决定了它要基于我的html代码中的标记来放置它们。
是什么原因造成的,我该如何解决?
我已经在模板功能文件中尝试过此操作:
//disable auto p
remove_filter ('the_content', 'wpautop');
remove_filter ('comment_text', 'wpautop');
// Remove auto formatting
remove_filter('the_content', 'wptexturize');
remove_filter('comment_text', 'wptexturize');
remove_filter('the_title', 'wptexturize');