gde_register_mce_button
The WordPress Core gde register mce button function.
Description
gde_register_mce_button( $buttons );
Parameters (1)
- 0. $buttons
- The buttons.
Usage
if ( !function_exists( 'gde_register_mce_button' ) ) { require_once '/functions-admin.php'; } // The buttons. $buttons = null; // NOTICE! Understand what this does before running. $result = gde_register_mce_button($buttons);
Defined (1)
The function is defined in the following location(s).
- /functions-admin.php
- function gde_register_mce_button( $buttons ) {
- array_push( $buttons, "separator", "gde" );
- return $buttons;
- }