WP_Customize_Setting::is_current_blog_previewed()publicWP 4.2.0

Return true if the current site is not the same as the previewed site.

Method of the class: WP_Customize_Setting{}

No Hooks.

Return

true|false. If preview() has been called.

Usage

$WP_Customize_Setting = new WP_Customize_Setting();
$WP_Customize_Setting->is_current_blog_previewed();

Changelog

Since 4.2.0 Introduced.

WP_Customize_Setting::is_current_blog_previewed() code WP 6.5.2

public function is_current_blog_previewed() {
	if ( ! isset( $this->_previewed_blog_id ) ) {
		return false;
	}
	return ( get_current_blog_id() === $this->_previewed_blog_id );
}