条件/检查:如果作者没有名字,则

时间:2016-12-23 作者:Pete

我正在寻找一种方法来检查作者是否包括了他们的名字(注册时),如果他们没有那么做。。。我不知道从哪里开始,也不知道从哪里结束,但我想它看起来有点像这样???

<?php if (get_the_author_meta(\'first_name\', true)) { ?>
// do something
<?php } ?>

1 个回复
最合适的回答,由SO网友:Tunji 整理而成

的第二个参数get_the_author_meta 是用户iD。

如果在循环中使用函数,则用户ID将是当前用户的ID,如果不是,则必须指定用户ID。

if ( !get_the_author_meta(\'first_name\', $user_id )) {
    // do something
}

相关推荐

Get_the_Author_meta()和Get_User_meta()有什么不同?

我有个问题:get_the_author_meta() 返回元get_user_meta() 对于相同的元键返回false,我不知道为什么会发生这种情况。关于用户元数据,我应该何时使用其中一种?I tried this:get_the_author_meta(\'afzfp_user_status\', $user->ID); get_user_meta(\'afzfp_user_status\', $user->ID, true); It returns:String \"t