Filter hook 'mce_external_plugins'
in WP Core File wp-includes/class-wp-editor.php at line 419
Description
Filters the list of TinyMCE external plugins. The filter takes an associative array of external plugins for TinyMCE in the form 'plugin_name' => 'url'. The url should be absolute, and should include the js filename to be loaded. For example: 'myplugin' => 'http://mysite.com/wp-content/plugins/myfolder/mce_plugin.js'. If the external plugin adds a button, it should be added with one of the 'mce_buttons' filters.
Occurrences
Filename |
Line Number |
wp-includes/class-wp-editor.php |
419 |
wp-includes/script-loader.php |
599 |
Parameters
Type |
Name |
Description |
array |
$external_plugins |
An array of external TinyMCE plugins. |
string |
$editor_id |
Unique editor identifier, e.g. 'content'. Accepts 'classic-block' when called from block editor's Classic block. |
PHP Doc
/**
* Filters the list of TinyMCE external plugins.
*
* The filter takes an associative array of external plugins for
* TinyMCE in the form 'plugin_name' => 'url'.
*
* The url should be absolute, and should include the js filename
* to be loaded. For example:
* 'myplugin' => 'http://mysite.com/wp-content/plugins/myfolder/mce_plugin.js'.
*
* If the external plugin adds a button, it should be added with
* one of the 'mce_buttons' filters.
*
* @since 2.5.0
* @since 5.3.0 The `$editor_id` parameter was added.
*
* @param array $external_plugins An array of external TinyMCE plugins.
* @param string $editor_id Unique editor identifier, e.g. 'content'. Accepts 'classic-block'
* when called from block editor's Classic block.
*/