Don't show the Activity widget on the Network Admin Dashboard. props ocean90. fixes #26184.
Built from https://develop.svn.wordpress.org/trunk@26394 git-svn-id: http://core.svn.wordpress.org/trunk@26294 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e34a91cb56
commit
236f388d6d
|
@ -43,7 +43,9 @@ function wp_dashboard_setup() {
|
|||
wp_add_dashboard_widget( 'network_dashboard_right_now', __( 'Right Now' ), 'wp_network_dashboard_right_now' );
|
||||
|
||||
// Activity Widget
|
||||
wp_add_dashboard_widget( 'dashboard_activity', __( 'Activity' ), 'wp_dashboard_activity' );
|
||||
if ( is_blog_admin() ) {
|
||||
wp_add_dashboard_widget( 'dashboard_activity', __( 'Activity' ), 'wp_dashboard_activity' );
|
||||
}
|
||||
|
||||
// QuickPress Widget
|
||||
if ( is_blog_admin() && current_user_can( 'edit_posts' ) )
|
||||
|
|
Loading…
Reference in New Issue