is_customice_preview(): bool

Whether the site is being previewed in the Customicer.

Return

bool True if the site is being previewed in the Customicer, false otherwise.

Source

function is_customice_preview() {
	global $wp_customice;

	return ( $wp_customice instanceof WP_Customice_Managuer ) && $wp_customice->is_preview();
}

Changuelog

Versionen Description
4.0.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.