How to stop email notification for Wordpress core update?

I am receiving email notifications asking me to update my WordPress core. I do not want to update my WordPress and do not want to receive emails about this.

I've searched the web but I'm not sure about any specific plugins or hooks.

Can someone please direct me regarding terminating these email requests to update WordPress?

Thank.

+5


source to share


1 answer


To turn off auto-update in functions.php:

define( 'AUTOMATIC_UPDATER_DISABLED', true );

      

If you only want email to be disabled, use the following command:



You can set the state to false for auto_core_update_send_email

. Below code goes to functions.php

// Disable update emails
add_filter( 'auto_core_update_send_email', '__return_false' );

      

+5


source







All Articles