最近换了一个主题后发现正文没有了上一篇,下一篇的 SEO 感觉很别捏,于是在网上找了下该如何实现的代码如下
<?php $this->thePrev(); ?><?php $this->theNext(); ?>
添加到 post.php 相应的位置后发现不是没美观,于是又找了个左右对称的代码,然后两者一结合最终形成了以下比较满意的代码
<style>
body{margin:0;padding:0;}
.a{float:left;}
.b{float:right;}
</style>
<div class="a"><strong> 上一篇:</strong><?php $this->thePrev(); ?></div>
<div class="b"><strong> 下一篇:</strong> <?php $this->theNext(); ?></div>