I am getting email notifications asking to update WordPress core. I don't want to update my WordPress and don't want to receive any emails regarding it.
I have searched the internet but am not sure about any specific plugins or hooks.
Can anyone please guide me in regards to stopping these email prompts to update WordPress?
Thank you.
To turn off automatic updates for WordPress core, you just have to add the following code to your wp-config. php file: define( 'WP_AUTO_UPDATE_CORE', false );
Unchecking the option for “New user notification to admin” will disable the email you get when new users sign up on your WordPress site.
To disable the Automatic updates in functions.php:
define( 'AUTOMATIC_UPDATER_DISABLED', true );
If you want just the email to be turned off, use the below:
You can set the status to false for auto_core_update_send_email
. Below code goes in functions.php
// Disable update emails
add_filter( 'auto_core_update_send_email', '__return_false' );
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With