带有自定义按钮的注释中的可视化编辑器

时间:2013-05-06 作者:Core

我已使用在注释中加载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); ?> 
谢谢

1 个回复
SO网友:Core

好的,我找到了解决方案,其他任何人都可以从中受益。

结束

相关推荐