after_wp_tiny_mce action-hook . WP 3.2.0
Fires after any core TinyMCE editor instances are created.
Usage
add_action( 'after_wp_tiny_mce', 'action_function_name_9378' ); function action_function_name_9378( $mce_settings ){ // action... }
- $mce_settings(array)
- TinyMCE settings array.
Changelog
Since 3.2.0 | Introduced. |
Where the hook is called
wp-includes/class-wp-editor.php 1712
do_action( 'after_wp_tiny_mce', self::$mce_settings );