Skip to main content
Login Join
Snippet · PHP

Hide ALL Update Notifications (Plugins + Themes + Core)

Shared by Nilesh Vastarpara · April 30, 2026

1 copy
15 views
Back to Snippets

Hides all WordPress update notifications (core, plugins, and themes) from the dashboard. Useful for client sites to keep the admin clean while updates are managed manually by the developer.

add_filter('pre_site_transient_update_core', '__return_null');
add_filter('pre_site_transient_update_plugins', '__return_null');
add_filter('pre_site_transient_update_themes', '__return_null');
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments