wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



is_customize_preview › WordPress Function

Desde4.0.0
Obsoleton/a
is_customize_preview ( Sem parâmetros )
Retorna:
  • (bool) True if the site is being previewed in the Customizer, false otherwise.
Definido em:
Codex:

Whether the site is being previewed in the Customizer.



Fonte

function is_customize_preview() {
	global $wp_customize;

	return ( $wp_customize instanceof WP_Customize_Manager ) && $wp_customize->is_preview();
}