kisabelle
11/8/2016 - 11:42 PM

Hide Plugin Update Notification Icons in Wordpress

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