codelight/tinymce-button-button

There is no license information available for the latest version (1.1.1) of this package.

Add buttons with specified CSS classes to your WordPress TinyMCE editor

1.1.1 2017-11-14 10:48 UTC

This package is auto-updated.

Last update: 2024-04-24 20:21:29 UTC


README

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.