get author in blog posts?

时间:2012-12-11 作者:Thomas Stringer

我需要做什么才能在我的wordpress博客上的博客帖子中找到作者的名字?

目前,当我查看一篇文章时,它没有写这篇文章的作者。

2 个回复
SO网友:Zach

这在某种程度上取决于single post view已存储,但您需要添加一些内容,以达到以下效果:

<?php

echo __(\'Written by\', \'text_domain\') .\' <a href="\'. get_author_posts_url(get_the_author_meta(\'ID\')) .\'" rel="author" class="fn">\'. get_the_author() .\'</a>\';

SO网友:markcbain

代码需要输入single.php, 您很可能会在主题文件夹中找到它。如果您使用的是子主题,则可能看不到它;在这种情况下,请将文件从父主题复制到子主题文件夹。您需要的WordPress功能是the_author, 因此,要获得作者的姓名,请在循环中添加类似的内容:

 <p>This post was written by <?php the_author(); ?></p>    

结束