Title: Multiple Rich Editors
Author: nickohrn
Published: <strong>2014 年 3 月 4 日</strong>
Last modified: 2014 年 3 月 4 日

---

搜索插件

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

![](https://s.w.org/plugins/geopattern-icon/multiple-rich-editors.svg)

# Multiple Rich Editors

 作者：[nickohrn](https://profiles.wordpress.org/nickohrn/)

[下载](https://downloads.wordpress.org/plugin/multiple-rich-editors.1.0.0.zip)

 * [详情](https://cn.wordpress.org/plugins/multiple-rich-editors/#description)
 * [评价](https://cn.wordpress.org/plugins/multiple-rich-editors/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/multiple-rich-editors/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/multiple-rich-editors/#developers)

 [支持](https://wordpress.org/support/plugin/multiple-rich-editors/)

## 描述

This plugin allows developers to easily register addition rich editors and retrieve/
display the content entered within.

## 安装

 1. Upload `multiple-rich-editors` to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Register new rich editors using add_theme_support and use the provided template
    tags to retrieve and display the data you need

## 常见问题

  How do I add a rich editor?

Easy! In your theme’s functions.php file, add the following code:

    ```
    function register_rich_editors() {
        add_theme_support('multiple-rich-editors', array(
            'additional-editor' => array(
                'label' => __('Additional Editor'),
                'post_types' => array('post'),
                'wp_editor' => array('media_buttons' => true),
            ),
            'additional-editor-2' => array(
                'label' => __('Additional Editor 2'),
                'post_types' => array('post', 'page'),
                'wp_editor' => array('media_buttons' => false),
            ),
        ));
    }
    add_action('after_setup_theme', 'register_rich_editors');
    ```

Feel free to provide whatever values you need.

  How do I know what I should provide when registering a rich editor?

Easy! Just take a look at the `/lib/template-tags.php` – there are detailed
 instructions
in there on how to register editors and use the template tags to get the data you
need.

  My content loses the paragraphs that are specified in the editor. What do I do?

Multiple Rich Editors doesn’t apply the default WordPress content filters on its
content by default. However, there is a code snippet in `/lib/template-tags.php`
that explains how to do this. Follow the directions there and you should be good
to go!

## 评价

此插件暂无评价。

## 贡献者及开发者

「Multiple Rich Editors」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ nickohrn ](https://profiles.wordpress.org/nickohrn/)

[帮助将「Multiple Rich Editors」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/multiple-rich-editors)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/multiple-rich-editors/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/multiple-rich-editors/)，或通过[RSS](https://plugins.trac.wordpress.org/log/multiple-rich-editors/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/multiple-rich-editors/)。

## 更新日志

#### 1.0.0

 * Initial release

## 额外信息

 *  版本 **1.0.0**
 *  最后更新：**12 年前**
 *  活跃安装数量 **10+**
 *  WordPress 版本 ** 3.8 或更高版本 **
 *  已测试的最高版本为 **3.7.41**
 *  语言
 * [English (US)](https://wordpress.org/plugins/multiple-rich-editors/)
 * 标签
 * [admin](https://cn.wordpress.org/plugins/tags/admin/)[editor](https://cn.wordpress.org/plugins/tags/editor/)
 *  [高级视图](https://cn.wordpress.org/plugins/multiple-rich-editors/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  1 条 5 星评价     ](https://wordpress.org/support/plugin/multiple-rich-editors/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/multiple-rich-editors/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/multiple-rich-editors/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/multiple-rich-editors/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/multiple-rich-editors/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/multiple-rich-editors/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/multiple-rich-editors/reviews/)

## 贡献者

 *   [ nickohrn ](https://profiles.wordpress.org/nickohrn/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/multiple-rich-editors/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](http://example.com/)