GC_Customize_Background_Image_Control
最后更新于:2021-11-25 19:49:22
GC_Customize_Background_Image_ControlCustomize Background Image Control class.
源文件
文件: gc-includes/customize/class-gc-customize-background-image-control.php
class GC_Customize_Background_Image_Control extends GC_Customize_Image_Control {
public $type = 'background';
/**
* Constructor.
*
* @since 3.4.0
* @uses GC_Customize_Image_Control::__construct()
*
* @param GC_Customize_Manager $manager Customizer bootstrap instance.
*/
public function __construct( $manager ) {
parent::__construct(
$manager,
'background_image',
array(
'label' => __( 'Background Image' ),
'section' => 'background_image',
)
);
}
/**
* Enqueue control related scripts/styles.
*
* @since 4.1.0
*/
public function enqueue() {
parent::enqueue();
$custom_background = get_theme_support( 'custom-background' );
gc_localize_script(
'customize-controls',
'_gcCustomizeBackground',
array(
'defaults' => ! empty( $custom_background[0] ) ? $custom_background[0] : array(),
'nonces' => array(
'add' => gc_create_nonce( 'background-add' ),
),
)
);
}
}