Wordpress wp_new_user_notification()无效

时间:2016-12-23 13:49:35

标签: php wordpress

我创建了页面模板,我正在创建新用户,并希望通过此功能向新用户发送电子邮件" wp_new_user_notification()"。它没有给我任何回应。

这是我的代码:

if (null == username_exists($user_email)) {
     include_once (home_url().'/wp-includes/pluggable.php');
     // Generate the password and create the user
     $password = wp_generate_password(12, false);
     $user_id = wp_create_user($user_email, $password, $user_email);

     // Email the user
     wp_new_user_notification($user_id);
 } // end if    

1 个答案:

答案 0 :(得分:0)

你应该像这样使用这个函数:

wp_new_user_notification( $user_id,'','user' );