WP_Customize_Manager::get_nonces()publicWP 4.5.0

Gets nonces for the Customizer.

Метод класса: WP_Customize_Manager{}

Хуки из метода

Возвращает

Массив. Nonces.

Использование

$WP_Customize_Manager = new WP_Customize_Manager();
$WP_Customize_Manager->get_nonces();

Список изменений

С версии 4.5.0 Введена.

Код WP_Customize_Manager::get_nonces() WP 6.5.2

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;
}