wp_dependencies_unique_hosts
函数
      wp_dependencies_unique_hosts ( No parameters )    
  - 返回值
 - 
- (string[]) A list of unique hosts of enqueued scripts and styles.
 
 
- 定义位置
 - 
- 
                                  wp-includes/general-template.php
, line 3688 
 - 
                                  wp-includes/general-template.php
 
- 引入
 - 4.6.0
 
- 弃用
 - –
 
Retrieves a list of unique hosts of all enqueued scripts and styles.
function wp_dependencies_unique_hosts() {
	global $wp_scripts, $wp_styles;
	$unique_hosts = array();
	foreach ( array( $wp_scripts, $wp_styles ) as $dependencies ) {
		if ( $dependencies instanceof WP_Dependencies && ! empty( $dependencies->queue ) ) {
			foreach ( $dependencies->queue as $handle ) {
				if ( ! isset( $dependencies->registered[ $handle ] ) ) {
					continue;
				}
				/* @var _WP_Dependency $dependency */
				$dependency = $dependencies->registered[ $handle ];
				$parsed     = wp_parse_url( $dependency->src );
				if ( ! empty( $parsed['host'] )
					&& ! in_array( $parsed['host'], $unique_hosts, true ) && $parsed['host'] !== $_SERVER['SERVER_NAME']
				) {
					$unique_hosts[] = $parsed['host'];
				}
			}
		}
	}
	return $unique_hosts;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。