stop_previewing_theme хук-событиеWP 3.4.0

Fires once the Customizer theme preview has stopped.

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

add_action( 'stop_previewing_theme', 'wp_kama_stop_previewing_theme_action' );

/**
 * Function for `stop_previewing_theme` action-hook.
 * 
 * @param WP_Customize_Manager $manager WP_Customize_Manager instance.
 *
 * @return void
 */
function wp_kama_stop_previewing_theme_action( $manager ){

	// action...
}
$manager(WP_Customize_Manager)
WP_Customize_Manager instance.

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

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

Где вызывается хук

WP_Customize_Manager::stop_previewing_theme()
stop_previewing_theme
wp-includes/class-wp-customize-manager.php 741
do_action( 'stop_previewing_theme', $this );

Где используется хук в WordPress

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