我无法给出确切的上下文答案,因为您尚未提供代码,但是下面列出的函数(使用示例)应该满足您的要求。
On each blog post on the index.php page I want to display the authors name and image.
在循环中,您可以使用
the_author_meta()
, 您可以使用
get_avatar()
您可以使用
get_author_posts_url()
-
<a href="<?php echo get_author_posts_url(get_the_author_meta(\'ID\')); ?>">
<?php
echo get_avatar(get_the_author_meta(\'ID\'));
the_author_meta(\'display_name\');
?>
</a>
I also need to show the authors bio at the bottom of every single.php post he posts.
这也是在循环内部完成的。您还可以使用
get_the_author_meta()
-
echo get_the_author_meta(\'description\');