2

出于某种原因,当我使用按钮创建项目符号列表时,我在 Wordpress 中的 WYSIWYG 编辑器会自动添加具有样式的跨度类。这很烦人,因为我希望我的文本有一定的大小,但是 span 类对样式进行了硬编码,并且弄乱了大小。

有谁知道如何删除跨度类的自动添加?

这个网站是为客户准备的,他/她不知道如何使用 HTML,这就是为什么它必须使用 WYSIWYG 编辑器。

非常感谢帮助。谢谢。

4

2 回答 2

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();
}
于 2013-04-19T12:01:38.163 回答
-1

您是从某处复制和粘贴文本吗?有时文本会在其源代码中包含样式,并且这些样式会被带到所见即所得。见http://tentblogger.com/copy-paste/

于 2013-01-22T23:46:51.170 回答