使用动作挂钩从自定义帖子类型创建WP用户

时间:2015-11-09 06:46:53

标签: wordpress hook

我有一个自定义帖子类型,我想用它来创建一个带有动作钩子的WP用户。一旦用户完成表格,钩子就应输入基本信息以开始注册wp用户,即用户名,密码电子邮件。

这是我迄今为止的功能,但我不知道它为什么不起作用。

function agency_add_tenant( $post_id) {
    $username = get_post_meta ( $post_id, 'username', true );
    $password = get_post_meta ( $post_id, 'password', true );
    $email_address = get_post_meta ( $post_id, 'email', true );

    $user_id = function wp_create_user( $username, $password, $email_address );

    // Email the user
    wp_mail( $email_address, 'Welcome!', 'Your Password: ' . $password );
}

0 个答案:

没有答案