MOin on Jul 10, 2010 | Tips & Tutorials

How to Customize WordPress Dashboard By Add/Remove Widgets

Delicious

WordPress version 2.7+ allow you to add or remove dashboard widgets to customize it  the way you want to. Luckily this tweak is also very easy and requires very minimal coding.

All you need to do is to paste the following code in your Functions.php file. It will remove all the widgets available in your dashboard further after you can try and Add/Remove lines starting with unset($wp_meta_boxes… to keep or remove the widgets you want.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function remove_dashboard_widgets() {
	global $wp_meta_boxes;
 
	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts']);
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
 
}
 
if (!current_user_can('manage_options')) {
	add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );
}
Stumble it Digg it Vote on Reddit Add to delicious
Tweet it Share on facebook Add to Technorati Float it

This website uses IntenseDebate comments, but they are not currently loaded because either your browser doesn't support JavaScript, or they didn't load fast enough.

One Response to “How to Customize WordPress Dashboard By Add/Remove Widgets”

  1. [...] H&#959w t&#959 Customize WordPress Dashboard B&#1091 Add/Remove Widgets | WP … [...]

Leave a Reply


You can submit your free wordpress theme in WP skinner user submitted themes gallery to get Downloads and popularity. Its Free! ​ ​ Submit your Theme

View All >>

About | Contact | Submit your Theme
© 2010 WP Skinner | Powered by WordPress Top ^