Created
          April 22, 2014 14:47 
        
      - 
      
- 
        Save jillmugge/11182058 to your computer and use it in GitHub Desktop. 
    Editing the meta boxes in the dashboard
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets'); | |
| function my_custom_dashboard_widgets() { | |
| global $wp_meta_boxes; | |
| //Right Now - Comments, Posts, Pages at a glance | |
| unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']); | |
| //Recent Comments | |
| unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); | |
| //Incoming Links | |
| unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); | |
| //Plugins - Popular, New and Recently updated Wordpress Plugins | |
| unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); | |
| //Wordpress Development Blog Feed | |
| unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); | |
| //Other Wordpress News Feed | |
| unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); | |
| //Quick Press Form | |
| unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); | |
| //Recent Drafts List | |
| unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment