Wordpress文章页添加作者专栏功能
我们经常发现,不少主题在文章末尾,都有一栏写着文章作者及作者的简介。对于多用户的 Wordpress 博客,这个功能是非常不错的,但是有些主题却没有,Wordpress 的文章页面是通过主题Single.php
加载文章,现在从这里手动加入代码,来实现作者专栏功能。
一、这段代码加入到主题Style.css
:
#author {
argin-top: 15px;
margin-bottom: 20px;
margin-top: 5px;
border: 1px solid #d9d9d9;
clear: both;
background-color: #F5F5F5;
padding: 10px;
width: auto;
height: 85px;
}
#author-img {
height: 70px;
width: 70px;
border: 1px solid #d9d9d9;
background-color: #FFFFFF;
padding: 5px;
margin-bottom: 10px;
float: left;
}
#author-text {
border:0px solid #000;
margin-left: 90px;
text-align:left;
text-decoration:none;
font-size:14px;
}
二、这段代码添加到主题Single.php
合适的位置:
<div id="author">
<div id="author-img">
<?php if(function_exists(‘get_avatar’)) { echo get_avatar( get_the_author_email(), '70' ); }?>
</div>
<div id="author-text">
<strong><?php the_author_link(); ?></strong>
<p><?php the_author_description(); ?></p>
</div>
</div>