在我可以使用的帖子内the_author()
检索作者姓名,但在单个帖子页面的侧栏中,这不会返回任何内容。如何获取文章作者在文章外部的元数据?
无法在Single.php的侧边栏中检索作者
1 个回复
最合适的回答,由SO网友:Johannes Pille 整理而成
测试是否在单个立柱上。如果是这样,请根据当前帖子的作者ID获取用户对象,并回显其display_name
属性:
if ( is_single() ) {
global $post;
$author = get_userdata( $post->post_author );
echo $author->display_name;
}
结束