出于某种原因,当我使用按钮创建项目符号列表时,Wordpress中的WYSIWYG编辑器会自动添加带样式的span类。这非常烦人,因为我希望我的文本具有一定的大小,但是span类硬编了样式并且它的大小混乱了。
有谁知道如何删除span类的自动添加?
此网站适用于客户,他/她不知道如何使用HTML,这就是为什么必须使用WYSIWYG编辑器。
非常感谢。感谢。
答案 0 :(得分:0)
我有同样的问题,而且我没有复制,每次创建列表时,编辑器都会添加代码:
文字
到列表的文本。
我怎样摆脱这个?
我刚刚找到一个适用于该帖子的解决方案: http://wordpress.org/support/topic/strange-behaviour-making-lists-in-the-visual-editor
如果您使用子主题,只需将此函数添加到functions.php文件:
/**
* I want to use the basic 2012 theme but don't want TinyMCE to create
* unwanted HTML. By removing editor-style.css from the $editor_styles
* global, this code effectively undoes the call to add_editor_style()
*/
add_action( 'after_setup_theme', 'foobar_setup', 11 );
function foobar_setup() {
global $editor_styles;
$editor_styles = array();
}
答案 1 :(得分:-1)
您是否在某处复制并粘贴文本?有时文本的源代码会有样式,样式会被传递给所见即所得。见http://tentblogger.com/copy-paste/