wordpress:在文章底部增加author

在wordpress的文章中,有時後可能會想新增作者在文章底部,你可以使用現成的plugin,例如以下:

9 Top Free WordPress Author Bio Box Plugins

但是抓了幾套來玩後,發現位置一直沒有可以弄到我想要的位置,只能指定文章的top或bottom,所以只好自己寫。

<!-- about author -->
<div id="entry-author-info" style="">

<h4 style="border-bottom: 1px solid #eee;">About Author</h4>

<div id="entry-author-info-avatar" style="float: left;">
<?php echo get_avatar( get_the_author_meta( 'ID' ), 100 ); ?>
</div>

<div>
<p><span style="color:#343434;font-size:18px;"><?php the_author(); ?></span></p>
<p><?php echo get_the_author_meta('description'); ?> </p>
</div>
<!-- end of about author -->

把上面的code加入single.php裡面你想要的位置即可。記得自己寫insline-style css,改成你要的樣式。

參考文章:
1.Function Reference/the author
2.Function Reference/get the author meta