wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_dashboard_blog › WordPress Function

Depuis
Dépréciée3.1.0
get_dashboard_blog ( Pas de paramètres )
Voir:
Retourne:
  • (WP_Site) Current site object.
Défini(e) dans:
Codex:
Changelog:
  • MU

Get the "dashboard blog", the blog where users without a blog edit their profile data.

Dashboard blog functionality was removed in WordPress 3.1, replaced by the user admin.


Source

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 );
}