get_main_site_id

函数
get_main_site_id ( $network_id = null )
参数
  • (int) $network_id Optional. The ID of the network for which to get the main site. Defaults to the current network.
    Required:
    Default: null
返回值
  • (int) The ID of the main site.
定义位置
相关方法
get_main_network_idis_main_siteget_the_idget_cat_idget_media_item
引入
4.9.0
弃用
-

get_main_site_id函数用来检索多站点安装中的主站点的ID: 该函数可用于检索主站点的站点数据或执行站点级操作。

获得主要网站的ID。

function get_main_site_id( $network_id = null ) {
	if ( ! is_multisite() ) {
		return get_current_blog_id();
	}

	$network = get_network( $network_id );
	if ( ! $network ) {
		return 0;
	}

	return $network->site_id;
}

常见问题

FAQs
查看更多 >