Scot's Field Notes

  • Archive
  • RSS
  • What can I help you achieve today?

Wordpress Dashboard Hacks - Remove Menu Items

Want to remove menu items from the Wordpress dashboard? This comes in especially handy for clients/friends/family that may be distracted by too many menu items, or just don’t have a need to use specific menu choices in the Worpress dashboard.

Simply paste the following code in the functions.php file from your theme directory:

function remove_menus () {
global $menu;
	$restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins'));
	end ($menu);
	while (prev($menu)){
		$value = explode(' ',$menu[key($menu)][0]);
		if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);}
	}
} 

add_action(‘admin_menu’, ‘remove_menus’); 



This will remove all menus named in the 
$restricted array.
Read more at → 10 Wordpress Dashboard Hacks.

  • 1 year ago
  • Permalink
Share

Short URL

TwitterFacebookPinterestGoogle+
← Previous • Next →

About



My name is → Scot Smith, I'm a 26 year-old Married (to my beautiful wife and best friend) Sales & Marketing Nut, specifically Database Marketing.

These are the notes and other bits I've found to share with others and save for later, mostly pertaining to this interest and passion I live my professional career for.

I'm currently working full-time with a Wholesaler of Team-Licensed Sporting Goods. You'll find here an archive of Sales & Marketing Cases and Challenges I've faced and solved during my tenure here.

Do you sell Wholesale?
→ Contact me, let's talk.

I also like → Corgi's. Mine is 13 years-old, her name is Kecia.

→ Work With Me
  • RSS
  • Random
  • Archive
  • What can I help you achieve today?
  • Mobile
Effector Theme by Pixel Union