Guest User

Untitled

a guest
Mar 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. // Add the snippet bollow in the functions.php file of the active theme on your dashboard site.
  4.  
  5. // Disable email notifications when Auto Updates are running
  6. add_filter( 'mainwp_updatescheck_disable_sendmail', 'mycustom_mainwp_updatescheck_disable_sendmail', 10, 1 );
  7. function mycustom_mainwp_updatescheck_disable_sendmail( $input ) {
  8. return true;
  9. }
  10.  
  11. ?>
Add Comment
Please, Sign In to add comment