如何使用wp_editor函数快速集成TinyMCE编辑器

在树林里,许多的小鸟在自由自在欢乐地飞翔着,高兴起来,便唱出清脆悦耳的曲子,和煦的春风吹拂着小河,河面上波光粼粼。我忽然被一阵悦耳、动听的笛声所牵动,放眼望去,一群顽皮的小孩子正用垂柳的茎做柳笛呢!他们吹出了心里的幸福和快乐。

最近在折腾投稿功能,需要集成TinyMCE编辑器,了解到WordPress 3.3版本新增了一个wp editor class (/wp-includes/class-wp-editor.php)。这个class使定制WordPress默认编辑器TinyMCE变的方便简单。特别是新增的函数wp_editor,用这个函数就能在WordPress任何地方将一个textarea渲染成TinyMCE编辑器。

wp_editor 函数参数

1
<?php wp_editor( $content, $editor_id, $settings = array() ); ?>

<?php wp_editor( $content, $editor_id, $settings = array() ); ?>

  • $content – textarea中的内容
  • $editor_id – 编辑器的HTML ID,只能包含小写字母
  • $settings – 设置选项,是一个数组,可以设置的参数包括:
    • wpautop – 是否开启wpautop,默认为true
    • media_buttons – 是否显示上传多媒体的按钮,默认true
    • textarea_name – textarea的name属性,默认与$editor_id相同
    • textarea_rows – textarea的rows属性,默认是get_option('default_post_edit_rows', 10),这一项在后台设置
    • tabindex – tabindex数值,tabindex规定用户用键盘的tab键切换表单元素时的顺序。
    • editor_css – 给编辑器添加css样式,适用于visual和html模式,必须包含<style>标签
    • teeny – 是否开启精简模式,这种模式下只加载基本插件(不加载任何外部TinyMCE插件),加载的插件包括inlinepopups、fullscreen、wordpress、wplink和wpdialogs,默认为false
    • tinymce – 用数组形式直接向tinyMCE传递参数
    • quicktags – 加载Quicktags,即HTML模式下的那些按钮,可以用数组形式直接向Quicktags传递参数。
    • dfw – 是否用DFW替换默认的全屏编辑器(需要特殊的DOM元素和css支持),开启该模式时,加载的全屏插件是wpfullscreen,默认为false。

wp_editor 使用示例

1、启用精简模式

1
2
3
4
<?php wp_editor( '', 'myeditor', array(
            'teeny' => true )
    );
?>

<?php wp_editor( '', 'myeditor', array( 'teeny' => true ) ); ?>

效果如图:

2、关闭精简模式和上传按钮

1
2
3
4
<?php wp_editor( '', 'myeditor', array(
    'media_buttons' => false )
    );
?>

<?php wp_editor( '', 'myeditor', array( 'media_buttons' => false ) ); ?>

效果如图:

3、更换皮肤为default,默认是wp_theme

1
2
3
4
5
<?php wp_editor( '', 'myeditor', array(
        'media_buttons' => false,
        'tinymce' => array( 'plugins' => '','skin' => 'default') )
      );
?>

<?php wp_editor( '', 'myeditor', array( 'media_buttons' => false, 'tinymce' => array( 'plugins' => '','skin' => 'default') ) ); ?>

效果如图:

可选的皮肤:default、wp_theme、o2k7和highcontrast

4、控制每行显示哪些按钮,显示部分WordPress隐藏的按钮

1
2
3
4
5
6
7
8
9
10
<?php wp_editor( '', 'myeditor', array(
            'media_buttons' => false,
            'tinymce' => array( 'plugins' => '',
                        'skin' => 'o2k7',
                        'theme_advanced_buttons1' => 'undo,redo,|,bold,italic,underline,strikethrough|,justifyleft,justifycenter,justifyright,justifyfull,|,forecolor,backcolor',
                        'theme_advanced_buttons2' => 'cut,copy,paste,|,bullist,numlist,blockquote,|,link,unlink,anchor,image,|,sub,sup,hr'
                     )
            )
      );
?>

<?php wp_editor( '', 'myeditor', array( 'media_buttons' => false, 'tinymce' => array( 'plugins' => '', 'skin' => 'o2k7', 'theme_advanced_buttons1' => 'undo,redo,|,bold,italic,underline,strikethrough|,justifyleft,justifycenter,justifyright,justifyfull,|,forecolor,backcolor', 'theme_advanced_buttons2' => 'cut,copy,paste,|,bullist,numlist,blockquote,|,link,unlink,anchor,image,|,sub,sup,hr' ) ) ); ?>

效果如图:

使用tinymce参数向TinyMCE传参时,使用TinyMCE的格式,具体参考这里

参考资料:http://www.solagirl.net/wp-editor-tutorial.html

推荐阅读:http://soderlind.no/front-end-editor-in-wordpress-3-3/(更多示例)

到此这篇关于如何使用wp_editor函数快速集成TinyMCE编辑器就介绍到这了。最后深深祝福牧护关中学越来越辉煌,祝福牧护关中学的全体师生,新学期一切好运,一切顺利,一切的一切称心如意!亲爱的同学们,当上课的铃声清脆地响起,当崭新的课本一页页翻开,当琅琅的读书声响遍校园,我们又回到了阔别已久的校园,开始了新的学习生活。在这里,送给同学们四句诗,与同学们共勉。更多相关如何使用wp_editor函数快速集成TinyMCE编辑器内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress做公司官网好吗?会不会显得档次很低?

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?