我尝试通过添加此代码
在用户列表中添加链接function frontend_profile_action_link($actions, $user_object) {
$actions['view profile'] = "<a class='view_frontend_profile' href='".admin_url().'user-detail.php'."'>".__('View Profile', 'frontend_profile')."</a>";
return $actions;
}
add_filter('user_row_actions', 'frontend_profile_action_link', 10, 2);
我想在用户列表中添加自定义链接,例如默认编辑链接,然后当我点击此链接获取用户的所有图像
答案 0 :(得分:0)
我认为你应该解决
<?php $user = get_user_by( $field, $value ); ?>
或者如果您在注册表单中指定了自定义字段,则可以使用
<?php get_userdata( $field ); ?>