大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
把下面的代码放进你所用主题的single.php文件的while主循环之内:
创新互联建站是一家专注于网站建设、做网站与策划设计,罗定网站建设哪家好?创新互联建站做网站,专注于网站建设10余年,网设计领域的专业建站公司;建站业务涵盖:罗定等地区。罗定做网站价格咨询:028-86922220
nav id="nav-single"
span class="nav-previous"?php previous_post_link( $format='span class="left-arrow"/span %link ', $link='%title', $in_same_cat = false, $excluded_categories = ''); ?/span
span class="nav-next"?php next_post_link($format=' %link span class="right-arrow"/span', $link='%title', $in_same_cat = false, $excluded_categories = ''); ?/span
/nav!-- #nav-single --
CSS请参考WP自带的2013主题的style中的1714-1723行,外加:
.left-arrow:before,.right-arrow:after{
width: 14px;
height: 14px;
display: inline-block;
padding: 8px 0;
color: #999;
font: 400 14px/1 dashicons!important;
font-weight: normal;
font-style: normal;
speak: none;
text-align: center;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-transition: all .1s ease-in-out;
-webkit-transition: all .1s ease-in-out;
transition: all .1s ease-in-out;
}
.left-arrow:before{
content: "\f340";
}
.right-arrow:after{
content: "\f344";
}
你需要在主题前台载入WP自带的dashicons才会有左右箭头出现,如下图
测试截图:
第一步,在你的主题模板文件夹下找到single.php文件,用DW打开,找到!–p class=postmetadata alt (可能不是每个主题都是同样的代码,原理就是找到文章内容模板结束的地方);
第二步,在你找到的文章内容模板结束的地方上,加入如下代码:div
div?php previous_post_link(‘« « 上一篇:%link’); ?/div
div class=alignright?php next_post_link(‘下一篇:%link » » ‘); ?/div
/div(我的博客如此,可以修改多种不同的表现形式,不一一列举。)
第三步,写CSS样式,并加入到style.css(默认样式表)。我的CSS代码如下:
.alignleft {
float:left;
text-align:left;
margin-right:10px;}
.alignright {
float:right;
text-align:right;
margin-left:10px;}
.alignleft a{
color:#D52300;
font-size:12px}
.alignright a{
color:#D52300;
至此就大功告成了
这个,要根据你的主题来定 你可以自己看一看,放到文章(post)代码的后面就行了,不懂代码的话就多试几次嘛~~