wpseek.com
WordPress开发者和主题制作者的搜索引擎



invited_user_email › WordPress过滤钩子

Since5.6.0
已弃用n/a
apply_filters( 'invited_user_email', $new_user_email, $user_id, $role, $newuser_key )
参数: (4)
  • (array) $new_user_email { Used to build wp_mail(). @type string $to The email address of the invited user. @type string $subject The subject of the email. @type string $message The content of the email. @type string $headers Headers. }
    Required: Yes
  • (int) $user_id The invited user's ID.
    Required: Yes
  • (array) $role Array containing role information for the invited user.
    Required: Yes
  • (string) $newuser_key The key of the invitation.
    Required: Yes
定义在:
文档:

Filters the contents of the email sent when an existing user is invited to join the site.





源码

$new_user_email = apply_filters( 'invited_user_email', $new_user_email, $user_id, $role, $newuser_key );