update_welcome_email

过滤钩子
apply_filters( 'update_welcome_email', $welcome_email, $blog_id, $user_id, $password, $title, $meta )
参数
  • (string) $welcome_email Message body of the email.
    Required:
  • (int) $blog_id Site ID.
    Required:
  • (int) $user_id User ID of the site administrator.
    Required:
  • (string) $password User password, or "N/A" if the user account is not new.
    Required:
  • (string) $title Site title.
    Required:
  • (array) $meta Signup meta data. By default, contains the requested privacy setting and lang_id.
    Required:
定义位置
相关勾子
update_welcome_user_emailupdate_welcome_subjectupdate_welcome_user_subjectupdate_postmetacomment_email
相关方法
update_blog_detailswp_ajax_update_welcome_panelwp_welcome_panelupdate_home_siteurlupdate_metaupdate_core
引入
MU (3.0.0)
弃用
-

update_welcome_email:此过滤器用于修改在新用户注册 WordPress 站点后发送给新用户的欢迎电子邮件的内容。 过滤器允许您自定义欢迎电子邮件的文本、格式和其他方面以满足您的需要。

过滤网站激活后发送给网站管理员的欢迎邮件的内容。

内容应通过wp_mail()格式化来传输。

$welcome_email = apply_filters( 'update_welcome_email', $welcome_email, $blog_id, $user_id, $password, $title, $meta );

常见问题

FAQs
查看更多 >