is_blog_admin()
Whether the current request is for a site's admininstrative interface.
e.g. /wp-admin/
Does not check if the user is an administrator; use current_user_can() for checking roles and capabilities.
1 time — 0.000021 sec (very fast) | 50000 times — 0.02 sec (speed of light) | PHP 7.1.2, WP 4.7.3
No Hooks.
Return
true|false
. True if inside WordPress site administration pages.
Usage
is_blog_admin();
Examples
#1 Add a widget to the console of a separate network site
// widget of the last activity on the site if ( is_blog_admin() ) { wp_add_dashboard_widget( 'dashboard_activity', __( 'Activity' ), 'wp_dashboard_site_activity' ); }
Notes
- Global. WP_Screen. $current_screen WordPress current screen object.
Changelog
Since 3.1.0 | Introduced. |
is_blog_admin() is blog admin code WP 6.7.1
function is_blog_admin() { if ( isset( $GLOBALS['current_screen'] ) ) { return $GLOBALS['current_screen']->in_admin( 'site' ); } elseif ( defined( 'WP_BLOG_ADMIN' ) ) { return WP_BLOG_ADMIN; } return false; }