如果我想在创建新用户时更新用户配置文件字段,我应该使用什么挂钩?
function default_followers() {
// set default follower
$current_id = get_current_user_id();
$key = \'followers\';
$value = \'1\';
update_user_meta( $current_id, $key, $value);
}
add_action(\'????????????????\', \'default_followers\' );
我尝试过:personal\\u options\\u update
我尝试了:edit\\u user\\u profile\\u update
两者似乎都不起作用。