GC_Customize_Background_Image_Control::enqueue()

最后更新于:2021-11-26 23:12:09

GC_Customize_Background_Image_Control::enqueue()

Enqueue control related scripts/styles.

源文件

文件: gc-includes/customize/class-gc-customize-background-image-control.php

	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' ),
				),
			)
		);
	}