我想调用一个函数来获取user_id,用户名和&创建新用户时发送电子邮件(用户填写用户名后,在注册表中发送电子邮件并提交)。任何钩子都能成功吗?感谢
答案 0 :(得分:0)
获取用户的信息 这样做:
global $current_user
get_currentuserinfo();
echo 'Username: ' . $current_user->user_login . "\n";
echo 'User email: ' . $current_user->user_email . "\n";
echo 'User first name: ' . $current_user->user_firstname . "\n";
echo 'User last name: ' . $current_user->user_lastname . "\n";
echo 'User display name: ' . $current_user->display_name . "\n";
echo 'User ID: ' . $current_user->ID . "\n";
$ current_user变量是一个对象。
它是WP_User的实例。
提供了WP_User类的属性, 你可以在/wp-include/capabilities.php
中看到它答案 1 :(得分:0)
你可以使用action hook user_register并用你的函数绑定它。