Hide Plugin Update Notification Icons in Wordpress
// Hide Plugin Notification Icons
function hide_that_stuff() {
echo '<style type="text/css">
#adminmenu li span.update-plugins span{ display: none; }
</style>'; // hide the update icon
}
add_action('admin_head', 'hide_that_stuff');