WIKI使用導(dǎo)航
站長(zhǎng)百科導(dǎo)航
站長(zhǎng)專題
- 網(wǎng)站推廣
- 網(wǎng)站程序
- 網(wǎng)站賺錢
- 虛擬主機(jī)
- cPanel
- 網(wǎng)址導(dǎo)航專題
- 云計(jì)算
- 微博營(yíng)銷
- 虛擬主機(jī)管理系統(tǒng)
- 開放平臺(tái)
- WIKI程序與應(yīng)用
- 美國(guó)十大主機(jī)
WordPress:WPMU Functions/get blog details
來自站長(zhǎng)百科
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