is_cross_domain() публичный Метод

Determines whether the admin and the frontend are on different domains.
С версии: 4.7.0
public is_cross_domain ( ) : boolean
Результат boolean Whether cross-domain.
 /**
  * Test WP_Customize_Manager::get_allowed_urls().
  *
  * @ticket 30937
  * @covers WP_Customize_Manager::get_allowed_urls()
  */
 function test_get_allowed_urls()
 {
     $wp_customize = new WP_Customize_Manager();
     $this->assertFalse(is_ssl());
     $this->assertFalse($wp_customize->is_cross_domain());
     $allowed = $wp_customize->get_allowed_urls();
     $this->assertEquals($allowed, array(home_url('/', 'http')));
     add_filter('customize_allowed_urls', array($this, 'filter_customize_allowed_urls'));
     $allowed = $wp_customize->get_allowed_urls();
     $this->assertEqualSets($allowed, array('http://headless.example.com/', home_url('/', 'http')));
 }