WordPress函数文档get_blog_status()
获取博客状态(多站点) 描述 Get a blog details field. 用法 <?php ge…
获取博客状态(多站点)
描述
Get a blog details field.
用法
<?php get_blog_status( $id, $pref ) ?>
参数
$id
(integer) (必填) The blog id
默认值: None
$pref
(string) (必填) A field name
默认值: None
返回值
(mixed)
The value from the field
示例
1
2
3
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
|
历史
添加于 版本: 3.0.0
源文件
get_blog_status() 函数的代码位于 wp-includes/ms-blogs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Get a blog details field.
*
* @since MU
*
* @global wpdb $wpdb
*
* @param int $id The blog id
* @param string $pref A field name
* @return bool|string|null $value
*/
function get_blog_status( $id, $pref ) {
global $wpdb;
$details = get_blog_details( $id, false );
if ( $details )
return $details->$pref;
return $wpdb->get_var( $wpdb->prepare(“SELECT %s FROM {$wpdb->blogs} WHERE blog_id = %d”, $pref, $id) );
}
|
相关
- 原文:http://codex.wordpress.org/Function_Reference/get_blog_status
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!