我想这就是你要找的。这将把名字和姓氏添加到用户元中,并向用户发送一封关于名字和姓氏添加的邮件。
add_action(\'user_register\', \'add_user_custom_meta\');
function add_user_custom_meta($user_id) {
$user_info=get_userdata( $user_id );
if ( isset( $_POST[\'first_name\'] ) )
update_user_meta($user_id, \'first_name\', $_POST[\'first_name\']);
if ( isset( $_POST[\'last_name\'] ) )
update_user_meta($user_id, \'last_name\', $_POST[\'last_name\']);
wp_mail($user_info->user_email, \'User first and last name\', sprintf(\'Hi we have added your first name :-% and last name:- % to our site.\',$_POST[\'first_name\'],$_POST[\'last_name\']));
}