针对handsome主题,直接放在主题文件夹下的post.php
文件里。具体位置如下所示。
<!--上一篇&下一篇-->
<nav class="m-t-lg m-b-lg">
<ul class="pager">
<?php thePrev($this); ?> <?php theNext($this); ?>
</ul>
</nav>
<!分隔符-->
<!--新增代码起始处-->
<!--相关文章推荐-->
<div class="tab-content clear">
<h4 class="widget-title m-t-none text-md"><?php _me("※相关文章推荐※ ") ?>
</h4>
<div id="relatedPosts" >
<ul class="list-group-item nav nav-list">
<?php $this->related(5)->to($relatedPosts); ?>
<?php if ($relatedPosts->have()): ?>
<?php while ($relatedPosts->next()): ?>
<li >
<a href="<?php $relatedPosts->permalink(); ?>" title="<?php $relatedPosts->title(); ?>"><?php $relatedPosts->title(); ?></a>
</li>
<?php endwhile; ?>
<?php else : ?>
<li>暂无相关推荐</li>
<?php endif; ?>
</ul>
</div>
</div>
<!--最新文章推荐-->
<div class="tab-content clear">
<h4 class="widget-title m-t-none text-md"><?php _me("※最新文章推荐※") ?>
</h4>
<div id="relatedPosts" >
<ul class="list-group-item nav nav-list">
<?php
$recent = $this->widget('Widget_Contents_Post_Recent','pageSize=3');
if($recent->have()):
while($recent->next()):
?>
<li><a href="<?php $recent->permalink();?>"><?php $recent->title();?></a></li>
<?php endwhile; endif;?>
</ul>
</div>
</div>
<!--新增代码结束处-->