Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@florianbrinkmann
Last active June 27, 2017 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florianbrinkmann/c940b49709165b2798d34cf80dab416d to your computer and use it in GitHub Desktop.
Save florianbrinkmann/c940b49709165b2798d34cf80dab416d to your computer and use it in GitHub Desktop.
Code to add a custom button to the TinyMCE editor (needs WordPress 4.8)
/**
* Listen to setup of a TinyMCE instance.
*/
jQuery(document).on('tinymce-editor-setup', function (event, editor) {
/**
* Add the id of the soon-to-create button to the
* toolbar1.
*
* @type {string}
*/
editor.settings.toolbar1 += ',schlicht-formats';
/**
* Create the button.
*/
editor.addButton('schlicht-formats', {
/**
* It is a menubutton.
*/
type: 'menubutton',
text: '»Schlicht« Formats',
icon: false,
/**
* Add the menu items.
*/
menu: [
{
text: 'Side note',
onclick: function () {
/**
* Toggle the custom side note format.
*/
editor.formatter.toggle('schlicht_side_note_format');
}
}
]
});
/**
* Wait until the editor is initialized before
* registering style.
*
* Original hint from http://archive.tinymce.com/forum/viewtopic.php?pid=92762#p92762
* onInit is deprecated, so https://www.tinymce.com/docs/advanced/migration-guide-from-3.x/#eventhandling
*/
editor.on('init', function () {
/**
* Register the new format for the side note.
*/
editor.formatter.register('schlicht_side_note_format', {
/**
* It is the block element div.
*/
block: 'div',
/**
* The div element gets the class side-note.
*/
classes: 'side-note',
/**
* The div is the wrapper for other block elements
* and does not replace them.
*/
wrapper: true
});
});
});
@florianbrinkmann
Copy link
Author

florianbrinkmann commented Jun 27, 2017

More information about that (in German): https://krautpress.de/2017/editor-um-button-erweitern/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment