一、get_blog_details(獲取子站點信息)php
返回多站點博客信息即wp_blogs表。數組
//顯示站點名稱 $blog_details = get_blog_details(1); echo 'Blog '.$blog_details->blog_id.' is called '.$blog_details->blogname.'.'; //顯示站點總文章數 $blog_details = get_blog_details(1); echo 'Blog '.$blog_details->blog_id.' is called '.$blog_details->post_count.'.';
二、get_blog_list(列表顯示每一個子站點信息)網絡
以數組的形式返回每一個站點BLog的信息。只有站點標記爲公開和成熟纔會返回。dom
$blog_list = get_blog_list( 0, 'all' ); foreach ($blog_list AS $blog) { echo 'Blog '.$blog['blog_id'].': '.$blog['domain'].$blog['path'].'<br />'; }
三、get_blog_permalink(獲得多站點文章ID)wordpress
$blog_id = 1; //站點ID號 $post_id = 1; //站點文章 echo 'To access post '.$post_id.' in blog '.$blog_id.' use the address '.get_blog_permalink( $blog_id, $post_id );
四、get_blog_post函數
獲取子站點文章post
http://codex.wordpress.org/Function_Reference/get_blog_post
五、get_user_detailsthis
$user_name = 'admin'; //用戶名稱,填寫你的登陸名稱 $user = get_user_details( $user_name ); echo 'User '.$user_name.' has ID '.$user->ID;
六、get_blog_option(獲取站點options表相關信息)url
返回一個站點博客相關信息,即options表裏面的數據。spa
$blog_id = 1; echo 'Blog '.$blog_id.' is called '.get_blog_option( $blog_id, 'blogname' );
七、is_blog_user(檢測用戶是不是指定站點的成員)
//若是是返回ture否返回false if(is_blog_user()) { //該使用是這個站點的成員 }
八、get_blog_count(返回整個站點的文章總數)
$blog_count = get_blog_count(); echo 'There are currently '.$blog_count.' blogs running on this server.';
九、get_current_user_id(獲取當前的user_id)
$user_id = get_current_user_id(); //獲取user_id if ($user_id == 0) { //判斷若是等於0說明沒有登陸,反之已登陸顯示該ID號 echo 'You are currently not logged in.'; } else { echo 'You are logged in as user '.$user_id; }
十、get_bloginfo(返回當前Blog信息)
返回你博客的信息,這些信息能夠用在任何地方的 PHP 代碼中。這個函數,和 bloginfo() 同樣,能夠用來在模板文件的任何地方顯示你博客的信息。
switch_to_blog(1); $site_title = get_bloginfo( 'name' ); $site_url = network_site_url( '/' ); $site_description = get_bloginfo( 'description' ); restore_current_blog(); echo '網絡首頁的 URL 是: ' . $site_url; echo '網絡首頁的 名稱 是: ' . $site_title; echo '網絡首頁的 副標題 是: ' . $site_description;