W3cubDocs

/WordPress

WP_Customize_Background_Image_Control::enqueue()

Enqueue control related scripts/styles.

Source

public function enqueue() {
	parent::enqueue();

	$custom_background = get_theme_support( 'custom-background' );
	wp_localize_script(
		'customize-controls',
		'_wpCustomizeBackground',
		array(
			'defaults' => ! empty( $custom_background[0] ) ? $custom_background[0] : array(),
			'nonces'   => array(
				'add' => wp_create_nonce( 'background-add' ),
			),
		)
	);
}

Changelog

Version Description
4.1.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_background_image_control/enqueue