How to Remove Links Tab from Admin Panel

WordPress admin interface has became more intuitive now. In the admin page, You can see the main navigation menu detailing each of the administrative functions you can perform, grouped in collapsible tabbed panels on the left-hand side column.

One of the tab is Links tab. This tab is to add a new link, edit existing links or create link categories. Links create in here will be display in the blogroll section of your blog.

Often, people doesn’t use this tab at all, so simplifying the admin panel by removing the tab can be done. To remove the tab, simply put the code below in your theme functions.php file.


add_action( 'admin_init', 'remove_links_tab_menu_pages' );

function remove_links_tab_menu_pages() {
	remove_menu_page('/articles_and_tutorials/remove_links_tab_from_admin_panel/link_manager.html');
	remove_menu_page('/articles_and_tutorials/remove_links_tab_from_admin_panel/tools.html');	
}

Hope this code helps.

Credit : The code is taken from http://wordpress.org/extend/plugins/remove-links-page

Trackbacks/Pingbacks

  1. How to Remove Links Tab from Admin Panel
  2. Best WordPress Tutorials of May 2011 | Creative WP Magazine | A Guide For WordPress - Creative WP Magazine | A Guide For WordPress
  3. 25 WordPress Custom Fields Tutorial | WordpressRadar.com - The Best Collection of Wordpress Tutorials on the Web

Leave a Reply

 

Amazingly Beautiful WordPress Themes