My office has a big WordPress multisite installation, so we are careful about updating plugins. As a result, there are ofter a number of plugins begging to be updated. It was getting annoying to see that all the time, so this little snippet gets rid of the notice.
<?php
add_action('admin_menu', 'remove_plugin_update_count');
function remove_plugin_update_count(){
global $menu,$submenu;
$menu[65][0] = 'Plugins';
$submenu['index.php'][10][0] = 'Updates';
}
?>
Just toss into your function.php file… (or save to a file and upload to /wp-content/mu-plugins)
thanks. clever one. fairly très bête question: can you stil see which plugins have been updated? probably under plugins, right?
Yep – all this does is remove the little notification/badge. You can see all the info on the plugins page.