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
檢視更多 >