WP_Customize_Manager::is_cross_domain()

Determines whether the admin and the frontend are on different domains.


Description Description


Return Return

(bool) Whether cross-domain.


Top ↑

Source Source

File: wp-includes/class-wp-customize-manager.php

	public function is_cross_domain() {
		$admin_origin = wp_parse_url( admin_url() );
		$home_origin  = wp_parse_url( home_url() );
		$cross_domain = ( strtolower( $admin_origin['host'] ) !== strtolower( $home_origin['host'] ) );
		return $cross_domain;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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