久久精品水蜜桃av综合天堂,久久精品丝袜高跟鞋,精品国产肉丝袜久久,国产一区二区三区色噜噜,黑人video粗暴亚裔

WordPress:WPMU Functions/get blog details

來自站長(zhǎng)百科
Xxf3325討論 | 貢獻(xiàn)2008年9月26日 (五) 13:55的版本 (新頁(yè)面: 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 ...)
(差異) ←上一版本 | 最后版本 (差異) | 下一版本→ (差異)
跳轉(zhuǎn)至: 導(dǎo)航、? 搜索

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
 archived
 mature 
 spam 
 deleted
 lang_id

Usage

To return all items, use the following syntax:

 $result = get_blog_details($blogId);

To return a single item, you can use the following:

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

Return to WordPress:WPMU_Functions