get_blog_count

函数
get_blog_count ( $network_id = null )
参数
  • (int|null) $network_id ID of the network. Default is the current network.
    Required:
    Default: null
返回值
  • (int) Number of active sites on the network.
定义位置
相关方法
get_blog_postget_blog_optionget_blog_listget_blogs_of_userget_comment_count
引入
-
弃用
-

get_blog_count:此函数返回多站点安装上的博客总数。它不接受任何参数。

获取安装的活动站点的数量。

该计数是缓存的,每天更新两次: 这不是一个实时计数。

function get_blog_count( $network_id = null ) {
	return get_network_option( $network_id, 'blog_count' );
}

常见问题

FAQs
查看更多 >