9

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

    $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: <>

根据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 } 

更新2:

我试过这个:

$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) "" } }
4

3 回答 3

30

用户的名字和姓氏存储在 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 );
于 2012-08-17T01:59:34.923 回答
5

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

# 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/

于 2020-01-13T22:21:29.640 回答
2

我认为您是在 Wordpress StackExchange 中提出类似问题的同一个人。

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

我最近亲身体验过,我的functions.php中有一些代码在user_register钩子上调用。当在 mu-plugins 中定义该挂钩时,我得到了您报告的问题。在我的 functions.php 中定义该钩子时,它工作正常。

于 2012-11-22T12:08:26.390 回答