我在 wordpress 中尝试了 Wp_editor,因为视觉选项卡工作正常,文本选项卡正在获取列表顺序。
<?php
$settings = array(
'textarea_name' => 'message1',
'media_buttons' => true,
'tinymce' => array(
'theme_advanced_buttons1' => 'formatselect,|,bold,italic,underline,|,' .
'bullist,blockquote,|,justifyleft,justifycenter' .
',justifyright,justifyfull,|,link,unlink,|' .
',spellchecker,wp_fullscreen,wp_adv'
)
);
wp_editor( '', 'content', $settings );
?>
同样对于可视化编辑器,它应该看起来像这样
我不知道 wordpress 编辑器发生了什么。
任何建议都会很棒。