你从法典中链接到的前两个动作,user_register
和profile_update
应该正是你需要的。
user_register
在用户成功注册后立即运行,并允许您访问其$user\\u id,您可以使用该id检索所需的任何用户数据,如姓名、电子邮件等。
add_action( \'user_register\', \'wse_custom_register_action\', 10, 1 );
function wse_custom_register_action( $user_id ) {
// send data to your external db/API
}
profile_update
工作方式完全相同,并允许您访问旧用户数据和新的更新用户数据。
我相信你不需要edit_user_profile_update
在这种情况下。