How can I remove the “updates” menu in the WordPress Admin panel?

How can I remove the “updates” menu in the WordPress Admin panel?

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

1 Answer
1

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' );
}

Leave a Comment