网站博客here
尽管地址栏中出现了相应的第2页网址,但是当按下第2页时,博客页面底部的分页不会将内容更改为第2页帖子 - 另外,第2页按钮在地址栏时未显示为已选中显示第2页 -
我用this theme before on this website 并且分页问题在安装时也存在,但是由现在无法检测的创建者排序 -
在编辑某些内容之前,似乎每个主题的全新安装都会出现分页问题 -
只是要补充一点,我不确定要发布哪些代码片段,如果有帮助请告诉我哪些文件,但如果这是正确的代码,这里是来自template-blog.php的代码段< / p>
sed -ni "/Version/{s/[0-9]*$/$BUILD_NUMBER/};p" <control file>
非常感谢任何可以为此提出解决方案的人:)
答案 0 :(得分:1)
wordpress中的分页:
示例分页代码:
<?php if ( have_posts() ) : ?>
<!-- Add the pagination functions here. -->
<!-- Start of the main loop. -->
<?php while ( have_posts() ) : the_post(); ?>
<!-- the rest of your theme's main loop -->
<?php endwhile; ?>
<!-- End of the main loop -->
<!-- Add the pagination functions here. -->
<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div>
<div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); ?></div>
<?php else : ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
更多参考资料:URL