WordPress: WPMU Functions/get blog details:修订间差异

来自站长百科
跳转至: 导航、​ 搜索
(新页面: Gets general blog information (pulls from table wp_blogs). Data this can return for a single blog includes: blog_id site_id domain path registered last_updated public ...)
 
无编辑摘要
 
(未显示另一用户的1个中间版本)
第1行: 第1行:
Gets general blog information (pulls from table wp_blogs).
得到一般的博客信息(来自表格wp_blogs)
 
Data this can return for a single blog includes:


单一博客的数据包括:
   blog_id
   blog_id
   site_id
   site_id
第16行: 第15行:
   lang_id
   lang_id


==Usage==
==用法==
 
要返回所有的内容,请使用下面的语法:
To return all items, use the following syntax:


   $result = get_blog_details($blogId);
   $result = get_blog_details($blogId);


To return a single item, you can use the following:
你返回某一个内容,你可以使用下面的语法:
 
   $result = get_blog_details($blogId)->path;
   $result = get_blog_details($blogId)->path;


----
----
 
返回到 [[WordPress:WPMU_Functions| WPMU_Functions]]
Return to [[WordPress:WPMU_Functions]]

2008年10月9日 (四) 15:21的最新版本

得到一般的博客信息(来自表格wp_blogs)。

单一博客的数据包括:

 blog_id
 site_id
 domain 
 path 
 registered
 last_updated
 public
 archived
 mature 
 spam 
 deleted
 lang_id

用法[ ]

要返回所有的内容,请使用下面的语法:

 $result = get_blog_details($blogId);

你返回某一个内容,你可以使用下面的语法:

 $result = get_blog_details($blogId)->path;

返回到 WPMU_Functions