Skip to content
Prem Tiwari
  • WP Tutorials
  • Plugins
  • About Me
  • Featured On
  • Let’s Talk
Prem Tiwari
Home / Plugins / Disable WordPress Update Notifications

Disable WordPress Update Notifications

ByPrem Tiwari Last updated onMarch 1, 2024

This plugin will disable WordPress core update notification, plugin update notification and theme update notifications and inline warnings in your admin panel.

If you don’t want to recieve the auto-update Email Notifications for you plugin & theme update, then this plugin is for you. It will disable all the plugins & themes auto-update Email Notifications.

Installation

  • Unzip the ZIP file and drop the folder straight into your ‘wp-content/plugins/’ directory.
  • Activate the plugin through the wordpress admin >> ‘Plugins’ menu in WordPress.
  • For plugin configurations go to settings >> Disable Notification Settings
  • Save settings. It’s done.

Disable Plugin Update Notifications

Add below snipats in your theme’s functions.php.

remove_action('load-update-core.php', 'wp_update_plugins');
add_filter('pre_site_transient_update_plugins', '__return_null');

Disable Theme Update Notifications

Add below snipats in your theme’s functions.php.

remove_action('load-update-core.php', 'wp_update_themes');
add_filter('pre_site_transient_update_themes', create_function('$a', "return null;"));

Disable Core Update Notifications

Add below snipats in your theme’s functions.php.

if (!current_user_can('update_core')) {
            return;
        }
        add_action('init', create_function('$a', "remove_action( 'init', 'wp_version_check' );"), 2);
        add_filter('pre_option_update_core', '__return_null');
        add_filter('pre_site_transient_update_core', '__return_null');
    }

Screen Short for Plugin

Admin Setting Page
Admin dashboard with notifications

Download this plugin from WordPress.org site

Disable WordPress Update Notifications and auto-update Email Notifications

Found it helpful? Share it with your friends on social media!

  • Facebook
  • Post on X
  • LinkedIn
Prem Tiwari

Prem Tiwari is a passionate advocate of open source technology, with over 10+ years of experience in the WordPress domain. He has great experience when it comes to scaled WordPress projects which caters the need for big enterprise clients on WordPress and WordPress VIP-GO platform.

Facebook Twitter Instagram YouTube Linkedin

Post navigation

Previous Previous
Enable Gzip Compression Using .htaccess
NextContinue
Remove Comment URL

Collections

  • Crawling and indexing
  • Meetup
  • PHP
  • Plugins
  • SEO
  • Tech Talks
  • WooCommerce Tutorials
  • WordCamp
  • WordPress Tutorials
  • Privacy
  • Cookies
  • Disable Update Notifications
Facebook Twitter Instagram YouTube Linkedin WordPress
Scroll to top
  • WP Tutorials
  • Plugins
  • About Me
  • Featured On
  • Let’s Talk