apply_filters( 'teeny_mce_plugins', array $plugins , string $editor_id )
Filters the list of teenyMCE plugins.
Parameters
-
$plugins
array -
An array of teenyMCE plugins.
-
$editor_id
string -
Unique editor identifier, e.g.
'content'
.
Source
File: wp-includes/class-wp-editor.php
.
View all references
$plugins = apply_filters(
'teeny_mce_plugins',
array(
'colorpicker',
'lists',
'fullscreen',
'image',
'wordpress',
'wpeditimage',
'wplink',
),
$editor_id
);
Changelog
Version | Description |
---|---|
3.3.0 | The $editor_id parameter was added. |
2.7.0 | Introduced. |