在javascript方面,作为一种粗略的衡量标准,您可以替换wp.editor.autop
和wp.editor.removep
无操作:
add_action( \'admin_print_footer_scripts\', function () {
?>
<script type="text/javascript">
jQuery(function ($) {
if (typeof wp === \'object\' && typeof wp.editor === \'object\') {
wp.editor.autop = function (text) { return text; };
wp.editor.removep = function (text) { return text; };
}
});
</script>
<?php
}, 100 );
然而,在非常有限的测试中,虽然它似乎保留了标记,但它确实将所有标记放在了文本编辑器的一行上,这非常难看。。。