get_blog_id_from_url

函数
get_blog_id_from_url ( $domain, $path = '/' )
参数
  • (string) $domain
    Required:
  • (string) $path Optional. Not required for subdomain installations.
    Required:
    Default: '/'
返回值
  • (int) 0 if no blog found, otherwise the ID of the matching blog
定义位置
相关方法
get_bloginfo_rssget_blogs_of_userget_bloginfoget_blog_countget_id_from_blogname
引入
-
弃用
-

get_blog_id_from_url:给定url,检索网络中相应站点的站点id。如果站点不存在,则返回false。

从一个博客的URL获取其数字ID。

在像example.com/blog1/这样的子目录安装中,$domain将是根目录’example.com’,$path是子目录’/blog1/’。对于像blog1.example.com这样的子域,$domain是’blog1.example.com’,而$path是’/’。

function get_blog_id_from_url( $domain, $path = '/' ) {
	$domain = strtolower( $domain );
	$path   = strtolower( $path );
	$id     = wp_cache_get( md5( $domain . $path ), 'blog-id-cache' );

	if ( -1 == $id ) { // Blog does not exist.
		return 0;
	} elseif ( $id ) {
		return (int) $id;
	}

	$args   = array(
		'domain'                 => $domain,
		'path'                   => $path,
		'fields'                 => 'ids',
		'number'                 => 1,
		'update_site_meta_cache' => false,
	);
	$result = get_sites( $args );
	$id     = array_shift( $result );

	if ( ! $id ) {
		wp_cache_set( md5( $domain . $path ), -1, 'blog-id-cache' );
		return 0;
	}

	wp_cache_set( md5( $domain . $path ), $id, 'blog-id-cache' );

	return $id;
}

常见问题

FAQs
查看更多 >