Log into WordPress as an editor or shop manager. At the top of every admin page, there’s a yellow banner: “WordPress X.X is available! Please update now.”
The editor can’t update WordPress. The shop manager can’t update WordPress. But they both see the warning, every single page, creating anxiety and unnecessary support requests.
WordPress shows update notifications to any user with access to the dashboard. But only administrators can actually perform updates. Showing the nag to everyone else is just noise.
What is the update nag?
WordPress displays a persistent banner across the top of all admin pages when a new version is available. It also shows plugin and theme update counts in the sidebar menu. These notifications are visible to all logged-in users with dashboard access.
Why should you care?
It worries non-admin users. Editors see “Please update now” and think the site is vulnerable. They email you asking if the site is safe. Or worse, they try to find the update button themselves.
It clutters the admin experience. For users who manage content — writers, editors, shop managers — the update nag is irrelevant noise. A cleaner admin is a more productive admin.
Client management. If you manage WordPress sites for clients, every update nag is a potential “is my site broken?” email.
The quick fix
// Hide update nag for non-administrators
add_action( 'admin_head', function() {
if ( ! current_user_can( 'update_core' ) ) {
remove_action( 'admin_notices', 'update_nag', 3 );
}
});
This hides the core WordPress update nag for any user who doesn’t have the capability to perform updates. Administrators still see everything.
The one-click solution
OvKit includes Hide Update Nag under Features → Admin. One toggle hides update notifications from non-admin users. Administrators retain full visibility.
What happens after you fix this?
- Non-admin users see a clean dashboard without update warnings
- Fewer “is my site broken?” emails from clients and content editors
- Administrators still see all update notifications — security isn’t compromised
FAQ
### Does hiding the nag mean updates won’t happen?
No. Administrators still see all update notices and can perform updates normally. You’re only hiding the visual notification from users who can’t act on it anyway.
### Can I hide plugin update notices too?
Yes, with additional CSS or capability checks. OvKit’s admin cleanup features include options to hide plugin and theme update counts from the sidebar menu for non-admin users.
### Is this safe for sites with automatic updates enabled?
Perfectly safe. Automatic updates work independently of the visual notification. Whether the nag is visible or not, WordPress auto-updates as configured.
Related reads: