Title: User/Global/Network Admin Dashboard
Last modified: August 19, 2016

---

# User/Global/Network Admin Dashboard

 *  [IKTP](https://wordpress.org/support/users/iktp/)
 * (@iktp)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/userglobalnetwork-admin-dashboard/)
 * I need to add a custom dashboard widget and remove other widgets to my multisite.
   i.e. to remove some widgets from the dashboard for each site I add this to my
   functions.php:
 *     ```
       function remove_dashboard_widgets() {
   
       	global $wp_meta_boxes;
       	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
       	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
       }
       add_action('wp_dashboard_setup', 'remove_dashboard_widgets');
       ```
   
 * But for a multisite the network admin has another dashboard, and when users register
   for my site (they register for all blogs) they see a global dashboard and these
   widgets dont get removed.
 * Can someone please help me figure out where to add the code to remove these widgets
   from network admin and from the user/global dashboard and also if the code needs
   to be changed at all.
 * Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [KatieBen](https://wordpress.org/support/users/katieben/)
 * (@katieben)
 * [15 years ago](https://wordpress.org/support/topic/userglobalnetwork-admin-dashboard/#post-2000931)
 * Here’s how I’m removing dashboard widgets:
 * _[Code moderated as per the [Forum Rules](http://codex.wordpress.org/Forum_Welcome).
   Please use the [pastebin](http://wordpress.pastebin.com/)]_
 * Hope this helps 🙂
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [15 years ago](https://wordpress.org/support/topic/userglobalnetwork-admin-dashboard/#post-2000932)
 * [https://github.com/tw2113/WordPress-Starter-Theme/blob/master/custom_cms_admin.php](https://github.com/tw2113/WordPress-Starter-Theme/blob/master/custom_cms_admin.php)
   has a list he uses…
 *  [Curtiss Grymala](https://wordpress.org/support/users/cgrymala/)
 * (@cgrymala)
 * [15 years ago](https://wordpress.org/support/topic/userglobalnetwork-admin-dashboard/#post-2000933)
 * Also, if you’re planning to do this on a global level, you’ll probably want to
   put the code into a PHP file and upload it to wp-content/mu-plugins rather than
   trying to replicate the code in (potentially) multiple themes.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘User/Global/Network Admin Dashboard’ is closed to new replies.

## Tags

 * [dashboard](https://wordpress.org/support/topic-tag/dashboard/)

 * In: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
 * 3 replies
 * 4 participants
 * Last reply from: [Curtiss Grymala](https://wordpress.org/support/users/cgrymala/)
 * Last activity: [15 years ago](https://wordpress.org/support/topic/userglobalnetwork-admin-dashboard/#post-2000933)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
