// Core updates add_filter( 'auto_core_update_send_email', 'wpb_stop_auto_update_emails', 10, 4 ); function wpb_stop_update_emails( $send, $type, $core_update, $result ) { if ( ! empty( $type ) && $type == 'success' ) { return false; } return true; } // Plugins updates add_filter( 'auto_plugin_update_send_email', '__return_false' ); //Themes updates add_filter( 'auto_theme_update_send_email', '__return_false' );
Warning: Trying to access array offset on null in /home/clients/7f7a8d8eb6e40c50d3548b06c548734d/web/wp-includes/class-wp-query.php on line 3766