after_wp_tiny_mce
Fires after any core TinyMCE editor instances are created.
Description
Parameters (1)
- 0. $self_mce_settings (array) =>
self::$mce_settings
- TinyMCE settings array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'after_wp_tiny_mce', $self_mce_settings );
- The following example is for adding a hook callback.
- // define the after_wp_tiny_mce callback
- function action_after_wp_tiny_mce( $self_mce_settings ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'after_wp_tiny_mce', 'action_after_wp_tiny_mce', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'after_wp_tiny_mce', 'action_after_wp_tiny_mce', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-editor.php
- do_action( 'after_wp_tiny_mce', self::$mce_settings );