我正在创建一个“会见团队”页面,其中将包括所有团队成员。我在使用作者。php文件模板。
我有一个显示所有作者的页面(与没有帖子的作者一起使用)。单击会重定向到作者页面。
在那里,如果作者有帖子,一切都很好,但我希望它能显示所有作者。
只需输出作者姓名即可:
<?php the_author_meta(\'first_name\') . \' \' . the_author_meta(\'last_name\'); ?>
仅当作者有帖子时才有效。我如何显示作者,即使他根本没有帖子?
最合适的回答,由SO网友:Rico Letterman 整理而成
您可以使用get_queried_object 法典上说:
如果您使用的是author归档,它将返回author对象
因此,由于您有一个对象,您可以返回它的值:
$author = get_queried_object();
echo $author->first_name . \' \' . $author->last_name;
您可以使用与
get_the_author_meta():
user_login
user_pass
user_nicename
user_email
user_url
user_registered
user_activation_key
user_status
roles
display_name
nickname
first_name
last_name
description (Biographical Info from the user\'s profile)
jabber
aim
yim
googleplus
twitter
user_level
user_firstname
user_lastname
rich_editing
comment_shortcuts
admin_color
plugins_per_page
plugins_last_view
ID