apply_filters( ‘teeny_mce_plugins’, array $plugins, string $editor_id )

In this article

Filters the list of teenyMCE plugins.

Parameters

$pluginsarray
An array of teenyMCE plugins.
$editor_idstring
Unique editor identifier, e.g. 'content'.

Source

$plugins = apply_filters(
	'teeny_mce_plugins',
	array(
		'colorpicker',
		'lists',
		'fullscreen',
		'image',
		'wordpress',
		'wpeditimage',
		'wplink',
	),
	$editor_id
);

Changelog

VersionDescription
3.3.0The $editor_id parameter was added.
2.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.