WIKI使用導(dǎo)航
站長百科導(dǎo)航
站長專題
- 網(wǎng)站推廣
- 網(wǎng)站程序
- 網(wǎng)站賺錢
- 虛擬主機(jī)
- cPanel
- 網(wǎng)址導(dǎo)航專題
- 云計(jì)算
- 微博營銷
- 虛擬主機(jī)管理系統(tǒng)
- 開放平臺(tái)
- WIKI程序與應(yīng)用
- 美國十大主機(jī)
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 ...) |
(沒有差異)
|
2008年9月26日 (五) 13:55的版本
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