teeny_mce_buttons
Filters the list of teenyMCE buttons (Code tab).
Usage
add_filter( 'teeny_mce_buttons', 'wp_kama_teeny_mce_buttons_filter', 10, 2 );
/**
* Function for `teeny_mce_buttons` filter-hook.
*
* @param array $mce_buttons An array of teenyMCE buttons.
* @param string $editor_id Unique editor identifier, e.g. 'content'.
*
* @return array
*/
function wp_kama_teeny_mce_buttons_filter( $mce_buttons, $editor_id ){
// filter...
return $mce_buttons;
}
- $mce_buttons(array)
- An array of teenyMCE buttons.
- $editor_id(string)
- Unique editor identifier, e.g. 'content'.
Changelog
| Since 2.7.0 | Introduced. |
| Since 3.3.0 | The $editor_id parameter was added. |
Where the hook is called
teeny_mce_buttons
wp-includes/class-wp-editor.php 638
$mce_buttons = apply_filters( 'teeny_mce_buttons', $mce_buttons, $editor_id );