如何从WP_User对象获取Wordpress用户的名字?

时间:2012-08-16 21:18:52

标签: wordpress

我正在写一个基本的插件。这是我的代码:

    $new_user = get_userdata($user_id); //$user_id is passed as a parameter

$first_name1 = $new_user->user_firstname;
$last_name1 = $new_user->user_lastname;
    echo "<" . $first_name1 . $last_name1 . ">";
    //returns: <>

$first_name2 = $new_user-first_name;
$last_name2 = $new_user->last_name;
    echo "<" . $first_name2 . $last_name2 . ">";
    //returns: <>

根据the codex,这应该有效,但当我回复$first_name$last_name时,它们就是空的。奇怪的是,这个确实有效:

    $id = $new_user->ID;

我做错了吗?

更新:

var_dump编辑$new_user,那些属性不在那里!这是因为我在/ mu-plugins目录中的插件中调用它吗?这些属性会在以后添加吗?

object(WP_User)#334 (7) { ["data"]=> object(stdClass)#330 (10) { ["ID"]=> string(3) "758" ["user_login"]=> string(7) "emerson" ["user_pass"]=> string(34) "$P$BB2PuvRbyGUSVZR1M8FLSujPvMO2MW0" ["user_nicename"]=> string(7) "emerson" ["user_email"]=> string(16) "123esl@gmail.com" ["user_url"]=> string(0) "" ["user_registered"]=> string(19) "2012-08-17 01:03:27" ["user_activation_key"]=> string(0) "" ["user_status"]=> string(1) "0" ["display_name"]=> string(7) "emerson" } ["ID"]=> int(758) ["caps"]=> array(1) { ["subscriber"]=> string(1) "1" } ["cap_key"]=> string(15) "wp_capabilities" ["roles"]=> array(1) { [0]=> string(10) "subscriber" } ["allcaps"]=> array(15) { ["read"]=> bool(true) ["level_0"]=> bool(true) ["read_questions"]=> bool(true) ["read_answers"]=> bool(true) ["publish_questions"]=> bool(true) ["immediately_publish_questions"]=> bool(true) ["publish_answers"]=> bool(true) ["read_private_forums"]=> bool(true) ["publish_topics"]=> bool(true) ["edit_topics"]=> bool(true) ["publish_replies"]=> bool(true) ["edit_replies"]=> bool(true) ["assign_topic_tags"]=> bool(true) ["access_s2member_level0"]=> bool(true) ["subscriber"]=> string(1) "1" } ["filter"]=> NULL } 

UPDATE2:

我试过了:

$user_meta = get_user_meta( $new_user->ID );
var_dump($user_meta);

我得到了这个(即使在用户的个人资料中定义了last_name和first_name也是空的):

array(11) { ["wp_user_level"]=> array(1) { [0]=> string(1) "0" } ["show_admin_bar_front"]=> array(1) { [0]=> string(4) "true" } ["wp_capabilities"]=> array(1) { [0]=> string(32) "a:1:{s:10:"subscriber";s:1:"1";}" } ["use_ssl"]=> array(1) { [0]=> string(1) "0" } ["admin_color"]=> array(1) { [0]=> string(5) "fresh" } ["comment_shortcuts"]=> array(1) { [0]=> string(5) "false" } ["rich_editing"]=> array(1) { [0]=> string(4) "true" } ["description"]=> array(1) { [0]=> string(0) "" } ["nickname"]=> array(1) { [0]=> string(7) "emerson" } ["last_name"]=> array(1) { [0]=> string(0) "" } ["first_name"]=> array(1) { [0]=> string(0) "" } }

3 个答案:

答案 0 :(得分:13)

用户的名字和姓氏存储在user_meta中。

http://codex.wordpress.org/Function_Reference/get_user_meta

因此,如果您想访问所有这些数据,请尝试以下方法:

$user_meta = get_user_meta( $new_user->ID );

或者,如果您想访问单个元值,请尝试以下操作:

$last_name = get_user_meta( $new_user->ID, 'last_name', true );

答案 1 :(得分:2)

您正在寻找的数据已经在WP_USER对象中,函数get_userdata()返回给您。要访问用户的名字和姓氏,只需执行以下操作:

# Retrieve the user's data (here we suppose, of course, the user exists)
$new_user = get_userdata( $user_id );
# Get the user's first and last name
$first_name = $new_user->first_name;
$last_name = $new_user->last_name;

参考:https://developer.wordpress.org/reference/classes/wp_user/

答案 2 :(得分:1)

我认为你是在Wordpress StackExchange中询问similar question内容的那个人。

这本身并不是一个答案,但解释似乎是在从mu-plugins代码调用时获取这些元字段时,WP平台本身存在一个错误。

我最近自己经历过这个,我在我的functions.php中有一些代码在user_register钩子上调用。当在mu-plugins中定义了这个钩子时,我得到了你报告的问题。当我的functions.php中定义了这个钩子时,它运行正常。