How can I remove the "updates" menu in the Wordpress Admin panel?
Picture 1.png http://img546.imageshack.us/img546/5135/picture1pv.png
How can I remove the "updates" menu in the Wordpress Admin panel?
Picture 1.png http://img546.imageshack.us/img546/5135/picture1pv.png
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' ); }