Author page from blog post

时间:2015-02-12 作者:user2197114

我正在寻找建立一个自定义WordPress博客,这很简单,但我有一个要求,我需要满足。

在索引上的每个博客帖子上。php页面我想显示作者的姓名和图片。作者姓名将链接到作者自己的页面,详细介绍那里的个人简历和所有那里的帖子。

我还需要在每篇文章的底部展示作者的个人简历。他发布的php帖子。如果有人有任何想法的话,我不知道该怎么做。

谢谢

1 个回复
SO网友:David Gard

我无法给出确切的上下文答案,因为您尚未提供代码,但是下面列出的函数(使用示例)应该满足您的要求。

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\');

结束

相关推荐