WordPress函数文档get_blog_count()
获取站点的总数(多站点) 描述 Get the number of active sites on your …
获取站点的总数(多站点)
描述
Get the number of active sites on your installation.
Note: The count is cached and updated twice daily. This is not a live count.
用法
1
2
3
4
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
<?php $blogs = get_blog_count( $id ) ?>
|
参数
$id
(integer) (可选) A site_id
默认值: 0
返回值
integer
The number of active sites
历史
添加于 版本: 1.0
源文件
get_blog_count() 函数的代码位于 /wp-includes/ms-functions.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* The number of active sites on your installation.
*
* The count is cached and updated twice daily. This is not a live count.
*
* @since MU 1.0
*
* @param int $network_id Deprecated, not supported.
* @return int
*/
function get_blog_count( $network_id = 0 ) {
if ( func_num_args() )
_deprecated_argument( __FUNCTION__, ‘3.1’ );
return get_site_option( ‘blog_count’ );
}
|
- 原文:http://codex.wordpress.org/Function_Reference/get_blog_count
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!