我的一篇文章比较长,分成几页来显示。
效果见:http://www.haoxiaoru.info/archives/317
修改文件
以inove主题为例。
打开:控制板——外观——编辑——single.php——
在single.php中找到
<?php the_content(); ?>
在后边添加
<?php wp_link_pages('before=<div id="page-links">&after=</div>&next_or_number=number&pagelink=第 % 页'); ?>
在文章中需要分页的地方插入(HTML模式下)
<!--nextpage-->
CSS显示效果
打开:控制板——外观——编辑——样式表 (style.css)——
在style.css中加入下面的代码:
#page-links {
background:#f4f7fc;
color:#777;
width:400px;
margin:10px 0 5px 30px;
}
#page-links a{
display:block;
width:200px;
padding-left:30px;
list-style:none;
}