WordPress remove Links from Admin menu


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // Remove Links from admin menu
  2. // via bit.ly/smag-wp31tips
  3. add_action( 'admin_menu', 'my_admin_menu' );
  4.  
  5. function my_admin_menu() {
  6. remove_menu_page('link-manager.php');
  7. }

URL: http://bit.ly/smag-wp31tips

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.