根据 WordPress 模板结构,WordPress 会使用 author.php 文件,如果没有,就会使用 archive.php 文件,如果还是没有,最后就会使用 index.php 文件来显示博客的某个作者的文章列表。
所以如果你想改变你的博客作者列表页面的样子,需要创建一个 author.php 文件,如果不存在,通过拷贝 archive.php,如果 archive.php 也不存在,那就拷贝 index.php吧。
如果你想显示作者的网站,邮箱和个人履历等这些资料,让读者更多地了解这个作者。可以加上以下代码:
Articles by <?php the_author(); ?> Author Website: <?php the_author_url(); ?> Author Email: <?php the_author_email(); ?> Author Bio: <?php the_author_description(); ?>

哆用户博客?
沙发
大哥,我想问个问题,最近我想学习点SEO,先拿我的名字来实验。我想在谷歌搜索我的名字就来我的博客。我要在博客里做点什么呀。
1. 到别人博客留言写这样的名字对别人很不尊重,别人希望看到你的网名。
2. 博客留言的链接都是 nofollow,你这样不会给你带来任何权重。
在别人博客留言当然是用网名了,呵呵
原来如此,以前还不知道呢
Articles by
Author Website:
Author Email:
Author Bio:
这个代码加在具体什么位置? 顶部?
嗯。