wp_send_new_user_notifications

函数
wp_send_new_user_notifications ( $user_id, $notify = 'both' )
参数
  • (int) $user_id ID of the newly created user.
    Required:
  • (string) $notify Optional. Type of notification that should happen. Accepts 'admin' or an empty string (admin only), 'user', or 'both' (admin and user). Default 'both'.
    Required:
    Default: 'both'
定义位置
相关方法
wp_new_user_notificationwpmu_signup_user_notificationwp_new_blog_notificationwpmu_welcome_user_notificationwpmu_new_site_admin_notification
引入
4.4.0
弃用
-

wp_send_new_user_notifications: 这是一个WordPress的动作钩子,当一个新用户在WordPress网站上注册时被触发。它用于在新用户注册时向网站管理员或其他指定用户发送电子邮件通知。

启动与创建新用户有关的电子邮件通知。

通知会同时发送给网站管理员和新创建的用户。

function wp_send_new_user_notifications( $user_id, $notify = 'both' ) {
	wp_new_user_notification( $user_id, null, $notify );
}

常见问题

FAQs
查看更多 >