禁用WordPress 5.5插件电子邮件



我们如何禁用有关Wordpress 5.5新电子邮件通知的电子邮件,说明插件是最新的或过期的?我做了很多网站,这些电子邮件很烦人。

正在寻找一些代码添加到functions.php。不是插件。

经过更多的研究,我认为这会奏效。

https://make.wordpress.org/core/2020/07/30/controlling-plugin-and-theme-auto-update-email-notifications-and-site-health-infos-in-wp-5-5/

// Disable auto-update email notifications for plugins.
add_filter( 'auto_plugin_update_send_email', '__return_false' );

// Disable auto-update email notifications for themes.
add_filter( 'auto_theme_update_send_email', '__return_false' );

最新更新