W3cubDocs

/WordPress

WP_Customize_Manager::get_nonces(): array

Gets nonces for the Customizer.

Return

array Nonces.

Source

public function get_nonces() {
	$nonces = array(
		'save'                     => wp_create_nonce( 'save-customize_' . $this->get_stylesheet() ),
		'preview'                  => wp_create_nonce( 'preview-customize_' . $this->get_stylesheet() ),
		'switch_themes'            => wp_create_nonce( 'switch_themes' ),
		'dismiss_autosave_or_lock' => wp_create_nonce( 'customize_dismiss_autosave_or_lock' ),
		'override_lock'            => wp_create_nonce( 'customize_override_changeset_lock' ),
		'trash'                    => wp_create_nonce( 'trash_customize_changeset' ),
	);

	/**
	 * Filters nonces for Customizer.
	 *
	 * @since 4.2.0
	 *
	 * @param string[]             $nonces  Array of refreshed nonces for save and
	 *                                      preview actions.
	 * @param WP_Customize_Manager $manager WP_Customize_Manager instance.
	 */
	$nonces = apply_filters( 'customize_refresh_nonces', $nonces, $this );

	return $nonces;
}

Hooks

apply_filters( ‘customize_refresh_nonces’, string[] $nonces, WP_Customize_Manager $manager )

Filters nonces for Customizer.

Changelog

Version Description
4.5.0 Introduced.

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