PDA

View Full Version : 在你的 WordPress 博客创建作者页面


car
2008-09-28, 09:04 PM
默认情况下,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(); ?>


其他解决方案:

How To: Adding An Author Page To Your WordPress Blog
Using Author Template Tags Outside of the WordPress Loop
Kafkaesquí’s Get Author Profile Plugin- 可以让你在主循环之外访问和提供作者信息,比如在博客的侧边拦上显示博客的主人和贡献者列表。.