WordPress函数文档get_active_blog_for_user()
获取用户可使用的博客 描述 Get one of a user’s active blogs Returns …
获取用户可使用的博客
描述
Get one of a user’s active blogs
Returns the user’s primary blog, if she has one and it is active. If it’s inactive, function returns another active blog of the user. If none are found, the user is added as a Subscriber to the Dashboard Blog and that blog is returned.
用法
<?php get_active_blog_for_user( $user_id ); ?>
参数
$user_id
(int) (必填) The unique ID of the user
默认值: None
返回值
(object)
The blog object
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
stdClass Object
(
[blog_id] => 1
[site_id] => 1
[domain] => example–domain.com
[path] => /
[registered] => 2013–12–02 19:00:48
[last_updated] => 2013–12–02 19:37:43
[public] => 1
[archived] => 0
[mature] => 0
[spam] => 0
[deleted] => 0
[lang_id] => 0
[blogname] => Example Site Name
[siteurl] => http://example-domain.com
[post_count] => 9
)
|
历史
添加于 版本: 1.0
- 原文:http://codex.wordpress.org/Function_Reference/get_active_blog_for_user
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!