Remove update nags for non-admins [duplicate]
In wp-admin/includes/update.php file if ( current_user_can(‘update_core’) ) $msg = sprintf( __(‘An automated WordPress update has failed to complete – <a href=”https://wordpress.stackexchange.com/questions/231010/%s”>please attempt the update again now</a>.’), ‘update-core.php’ ); else $msg = __(‘An automated WordPress update has failed to complete! Please notify the site administrator.’); We can see that messages are different based on the current … Read more