wysiwyg is scrambled

时间:2011-06-30 作者:Jarco

我对wordpress编辑器有问题。它不断删除我的输入并扰乱内容。我如何解决这个问题?

Error in editor

1 个回复
最合适的回答,由SO网友:Daniel Sachs 整理而成

我建议您对所见即所得使用编辑器样式。添加add_editor_style(); 您的功能。然后添加一个名为editor-style.css 到主主题目录。编辑器样式应反映基本css设置,如实际前端内容宽度、H1、H2、p等标记样式、边距、图像填充和边距等。不要复制默认样式。css,只是基本的样式。

下面是编辑器样式的示例。我在最新项目中使用的css文件(注意html.mceContentBody):

html .mceContentBody {
width:690px;
font-family:Arial, Helvetica, sans-serif;
}

h1 {
    color: #AC2327;
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 50px;
}
h2 {
    color: #494949;
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0 15px;
}
ul li {
    color: #494949;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.7em;
    list-style: disc inside url(includes/images/dot.gif);
    padding: 2px 0;
}
p {
    color: #494949;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.6em;
    margin: 15px 0 5px;
}
p a {
    color: #CA1016;
    text-decoration: none;
}
strong {
    font-weight: bold;
}
img {
    border: 1px solid #E4E2E2;
    clear: both;
    margin: 0 25px 25px;
}
hr {
    background-color: #D7D7D7;
    border: 0 none;
    color: #D7D7D7;
    float: left;
    height: 1px;
    margin: 0 0 18px;
    width: 100%;
}

结束