我已使用在注释中加载WP visual editorwp_editor
函数,我想自定义编辑器的高度和按钮,而且最好只显示文本模式/选项卡,禁用视觉模式/选项卡。
这里是我的代码:
<?PHP
$settings = array(
false, // wpautop
false, // media_buttons
\'comment\', // textarea_name
5, // textarea_rows
\'None\', // tabindex
\'None\', // editor_css
\'test\', // editor_class
true, // teeny
false,
true, // tinymce
true // quicktags
)
?>
<?php wp_editor( \'Enter your comments here\', get_the_ID(), $settings); ?>
谢谢