get_dashboard_blog

函式
get_dashboard_blog ( No parameters )
返回值
  • (WP_Site) Current site object.
相關
  • get_site()
定義位置
相關方法
get_dashboard_urlwp_dashboard_pluginswp_dashboard_browser_nagwp_dashboard_quotawp_dashboard
引入
-
棄用
3.1.0

get_dashboard_blog: 這個函式返回在WordPress多站點網路中被指定為dashboard站點的ID。

獲得"儀表盤部落格",即沒有部落格的使用者編輯他們的個人資料的部落格。

儀表盤部落格功能在WordPress 3.1中被刪除,被使用者管理所取代。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function get_dashboard_blog() {
_deprecated_function( __FUNCTION__, '3.1.0', 'get_site()' );
if ( $blog = get_site_option( 'dashboard_blog' ) ) {
return get_site( $blog );
}
return get_site( get_network()->site_id );
}
function get_dashboard_blog() { _deprecated_function( __FUNCTION__, '3.1.0', 'get_site()' ); if ( $blog = get_site_option( 'dashboard_blog' ) ) { return get_site( $blog ); } return get_site( get_network()->site_id ); }
function get_dashboard_blog() {
    _deprecated_function( __FUNCTION__, '3.1.0', 'get_site()' );
    if ( $blog = get_site_option( 'dashboard_blog' ) ) {
	    return get_site( $blog );
    }

    return get_site( get_network()->site_id );
}

常見問題

FAQs
檢視更多 >