我做了进一步的研究并找到了答案——我现在正在使用“tiny\\u mce\\u before\\u init”上的挂钩。
基于other answers (特别感谢回答#2@Chip Bennett), 我在函数中使用了以下代码。php来保护段落分隔符(在编辑器HTML模式下,它们显示为  但成为前端的段落):
function tinymce_config_59772( $init ) {
// Don\'t remove line breaks
$init[\'remove_linebreaks\'] = false;
// Convert newline characters to BR tags
$init[\'convert_newlines_to_brs\'] = true;
// Do not remove redundant BR tags
$init[\'remove_redundant_brs\'] = false;
// Pass $init back to WordPress
return $init;
}
add_filter(\'tiny_mce_before_init\', \'tinymce_config_59772\');
你可以在tinyMCE上找到
site 不同的可能配置。