Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 882 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 882 Bytes

WordPress TinyMCE Button Button

Add buttons to your TinyMCE editor. The "buttons" are actually just link tags with CSS classes you can define.

Screenshot

Installation

Via Composer:
composer require codelight/tinymce-button-button

Alternatively, download and install as a WordPress plugin.
Note that v2 of this plugin will only be released as a composer package.

Usage

Register different button styles using the following filter:

add_filter('tinyMCEButton', function ($buttons) {
    $buttons[] = [
        'text' => 'Intro Button', 
        'value' => 'button intro-button'
    ];
    return $buttons;
});

Every element in the $buttons array will create a new selectable button style.
The text parameter is displayed to the user when selecting button styles. The value parameter is used as the link class.