Code Snippet > PHP
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.
PHP
Simply put the code in your theme functions.php file.
add_action( 'admin_init', 'remove_links_tab_menu_pages' );
function remove_links_tab_menu_pages() {
remove_menu_page('link-manager.php');
remove_menu_page('tools.php');
}
Source: http://www.dynamicwp.net/articles-and-tutorials/remove-links-tab-from-admin-panel/
Leave a comment
Have something to say? Drop a comment! No HTML tags are allowed in the comment textfield.





















0 comments