进入设置->TinyMCE Advanced,并选中该选项Stop removing the <p> and <br /> tags when saving and show them in the HTML editor
. 这将允许您完全控制HTML视图中的这些标记。
对于不重写编辑器的单行换行符,请使用Shift+Enter
.
替代编辑器并生成Enter
一个换行符,把这个放进你的functions.php
:
function change_mce_options($init){
$init["forced_root_block"] = false;
$init["force_br_newlines"] = true;
$init["force_p_newlines"] = false;
$init["convert_newlines_to_brs"] = true;
return $init;
}
add_filter(\'tiny_mce_before_init\',\'change_mce_options\');
这不会转换
shift+enter
进入
<p></p>
但是,这将导致现有内容出现一些奇怪的行为(如果您在现有
<p>
它将给出两行而不是一行),因此我强烈建议您习惯
shift+enter
相反