How do I disable dashboard update notifications for subscribers?

you can include some custom css in your functions.php that hides the update_nag (notifications) element dependent on user capability:

add_action('admin_head','admin_css');
function admin_css()
{
if(!current_user_can('administrator'))//not and admin
{
    echo '<style>';
        echo '.update_nag{display:none}';
        echo '</style>';
    }
}

Leave a Comment