GC_Customize_New_Menu_Control
最后更新于:2021-11-25 20:24:50
GC_Customize_New_Menu_ControlCustomize control class for new menus.
源文件
文件: gc-includes/customize/class-gc-customize-new-menu-control.php
class GC_Customize_New_Menu_Control extends GC_Customize_Control {
/**
* Control type.
*
* @since 4.3.0
* @var string
*/
public $type = 'new_menu';
/**
* Constructor.
*
* @since 4.9.0
* @deprecated 4.9.0
*
* @see GC_Customize_Control::__construct()
*
* @param GC_Customize_Manager $manager Customizer bootstrap instance.
* @param string $id The control ID.
* @param array $args Optional. Arguments to override class property defaults.
* See GC_Customize_Control::__construct() for information
* on accepted arguments. Default empty array.
*/
public function __construct( GC_Customize_Manager $manager, $id, array $args = array() ) {
_deprecated_function( __METHOD__, '4.9.0' );
parent::__construct( $manager, $id, $args );
}
/**
* Render the control's content.
*
* @since 4.3.0
* @deprecated 4.9.0
*/
public function render_content() {
_deprecated_function( __METHOD__, '4.9.0' );
?>
<button type="button" class="button button-primary" id="create-new-menu-submit"><?php _e( 'Create Menu' ); ?></button>
<span class="spinner"></span>
<?php
}
}