wpseek.com
A WordPress-centric search engine for devs and theme authors



mce_external_plugins › WordPress Filter Hooks

Since5.3.0
Deprecatedn/a
apply_filters( 'mce_external_plugins', array()
Parameters: (2)
  • (array) $external_plugins An array of external TinyMCE plugins.
    Required: Yes
  • (string) $editor_id Unique editor identifier, e.g. 'content'. Accepts 'classic-block' when called from block editor's Classic block.
    Required: Yes
Defined at:
Codex:

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.





Source

$mce_external_plugins = apply_filters( 'mce_external_plugins', array(), $editor_id );