Title: teeny_mce_plugins
Published: April 25, 2014
Last modified: April 28, 2025

---

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

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#wp--skip-link--target)

Filters the list of teenyMCE plugins.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#parameters)󠁿

 `$plugins`array

An array of teenyMCE plugins.

`$editor_id`string

Unique editor identifier, e.g. `'content'`.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#source)󠁿

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

[View all references](https://developer.wordpress.org/reference/files/wp-includes/class-wp-editor.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/6.9.4/src/wp-includes/class-wp-editor.php#L386)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/6.9.4/src/wp-includes/class-wp-editor.php#L386-L398)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#related)󠁿

| Used by | Description | 
| [_WP_Editors::editor_settings()](https://developer.wordpress.org/reference/classes/_wp_editors/editor_settings/)`wp-includes/class-wp-editor.php` |  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/teeny_mce_plugins/?output_format=md#changelog)󠁿

| Version | Description | 
| [3.3.0](https://developer.wordpress.org/reference/since/3.3.0/) | The `$editor_id` parameter was added. | 
| [2.7.0](https://developer.wordpress.org/reference/since/2.7.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fteeny_mce_plugins%2F)
before being able to contribute a note or feedback.