WordPress:从帖子ID中获取作者信息

2022-08-30 09:50:55

甚至是帖子ID中的作者ID。我正在尝试在单个帖子页面的侧边栏中返回作者元(作者页面链接和头像)(在帖子循环之外)。最好的方法是什么?我正在使用自定义函数(见下文)返回帖子ID,但不确定接下来要调用哪个函数。

function this_post_id() {
  global $wp_query;
  $thePostID = $wp_query->post->ID;
  return $thePostID;
}

答案 1

我想通了。

<?php $author_id=$post->post_author; ?>
<img src="<?php the_author_meta( 'avatar' , $author_id ); ?> " width="140" height="140" class="avatar" alt="<?php echo the_author_meta( 'display_name' , $author_id ); ?>" />
<?php the_author_meta( 'user_nicename' , $author_id ); ?> 

答案 2

如果您希望它在循环之外,请使用以下代码。

<?php
$author_id = get_post_field ('post_author', $post_id);
$display_name = get_the_author_meta( 'display_name' , $author_id ); 
echo $display_name;
?>

推荐