1

How can I remove the "updates" menu in the Wordpress Admin panel?

Picture 1.png http://img546.imageshack.us/img546/5135/picture1pv.png

1
  • The needed solution depends of what you want to achieve. Just removing it from display could be done via a php global variable, css and jQuery. Just removing it would still leave it accessible. Completely denying the access to a user is bit more complicated. Commented Jan 8, 2012 at 5:43

1 Answer 1

8

You can use the remove_submenu_page function:

add_action( 'admin_init', 'wpse_38111' ); function wpse_38111() { remove_submenu_page( 'index.php', 'update-core.php' ); } 

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.