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

Picture 1.png

link|improve this question

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. – kaiser Jan 8 at 5:43
feedback

1 Answer

up vote 2 down vote accepted

You can use the remove_submenu_page function (http://codex.wordpress.org/Function_Reference/remove_submenu_page)

add_action( 'admin_init', 'wpse_38111' );
function wpse_38111() {
    remove_submenu_page( 'index.php', 'update-core.php' );
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.