Plugin info

Total downloads: 1,656
Active installs: 10
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 3/4/2014 (4320 days ago)
Added to WordPress: 3/4/2014 (11 years old)
Minimum WordPress version: 3.8
Tested up to WordPress version: 3.7.41
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4320 days ago • 1 reviews

22/100

Is Multiple Rich Editors abandoned?

Possibly abandoned (last update 4320 days ago).

Compatibility

Requires WordPress: 3.8
Tested up to: 3.7.41
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Disable Visual Editor WYSIWYG
Rating 5.0/5 (22 reviews)Active installs 2,000
WP Super Edit
Rating 3.7/5 (18 reviews)Active installs 2,000
Three Column Screen Layout
Rating 3.8/5 (16 reviews)Active installs 2,000
Posts Columns Manager
Rating 5.0/5 (13 reviews)Active installs 800
Admin Page Notes
Rating 5.0/5 (9 reviews)Active installs 800
Reset Meta Box Positions
Rating 5.0/5 (2 reviews)Active installs 300

Description

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

Installation

  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

Frequently Asked Questions

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!

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.0.0

  • Initial release