WordPress主题/插件更新时怎么关闭邮件信息
使用WordPress建站的站长会注意到,从WordPress 5.5开始,一旦启用了插件或主题自动更新,当插件或插件自动更新成功或失败时,都将收到一封邮件通知。
这不同的站长态度是不一样的,有的喜欢这样,有的反感消息频繁通知。我们可以通过代码自定义是否需要收到通知信息。
自定义主题和插件自动更新邮件通知的内容和收件人
WordPress 5.5 新增了一个钩子 auto_plugin_theme_update_email 允许我们进行邮件自定义。以下是一个简单的示例:
function myplugin_auto_plugin_theme_update_email( $email, $type, $successful_updates, $failed_updates ) { // 修改收件人邮箱 $email['to'] = 'admin@example.com'; // 修改【更新失败】的邮件标题 if ( 'fail' === $type ) { $email['subject'] = __( 'ATTN: IT Department – SOME AUTO-UPDATES WENT WRONG!', 'my-plugin' ); } return $email; } add_filter( 'auto_plugin_theme_update_email', 'myplugin_auto_plugin_theme_update_email', 10, 4 );
禁用主题和插件自动更新邮件通知
如果你想要彻底禁用主题和插件自动更新的邮件通知,可以使用下面的函数来实现,添加到主题的functions.php 即可生效:
// 禁用插件自动更新邮件通知 add_filter( 'auto_plugin_update_send_email', '__return_false' ); // 禁用主题自动更新邮件通知 add_filter( 'auto_theme_update_send_email', '__return_false' );
如果你不懂弄代码,可以通过安装 Disable auto-update Email Notifications 插件来禁用邮件通知。
0条评论