gpt4 book ai didi

wordpress 从数据库中获取用户好听的名字

转载 作者:行者123 更新时间:2023-12-02 04:30:16 25 4
gpt4 key购买 nike

如何在函数中为用户取好听的名字?目前我用头像得到了它,但不知道如何为用户取个好听的名字:

$table = $wpdb->prefix . "thumbsup_info";
$result = $wpdb->get_results("SELECT userid FROM $table WHERE postid = '$postid' LIMIT 10", ARRAY_A);
$total_user = $wpdb->num_rows;
for($i=0; $i <$total_user ; $i++)
{
$userid.= get_avatar($result[$i]['userid'],100);


}
return $userid;

最佳答案

通过以下代码获取用户对象:

$user = get_user_by( 'id', $result[$i]['userid'] );

然后你就可以访问你需要的属性了。例如,要获取 nicename,您可以使用 $user->data->user_nicename

关于wordpress 从数据库中获取用户好听的名字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23566911/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com