WordPress用query_posts分页失效解决办法
query_post的功能的确强大,可以使用它来自定义你想要调用的文章,现在要说的是通过它来实现文章的分页,在我的主题中我后台设置的是每一页10篇文章,但在我图片这个分类中我想显示9张图片,这就要用到以下代码:
1 2 3 4 5 6 7 8 | < ?php query_posts('showposts=9&cat=64'); if (have_posts()) : while (have_posts()) : the_post();?> <div class="pic" id="post-<?php the_ID(); ?>" < ?php post_class(); ?>> ..... </div> < ?php endwhile; endif; ?> |
这样是实现了每页9张图片,但是到第二页的时候发现内容和第一页一样,
在这里得把这里的代码改下:
1 2 3 4 5 6 7 8 9 10 11 12 | < ?php $limit = get_option('posts_per_page'); $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('&showposts=' . $limit = 9 . '&paged=' . $paged . '&cat=9'); $wp_query->is_archive = true; $wp_query->is_home = false; if (have_posts()) : while (have_posts()) : the_post();?> <div class="pic" id="post-<?php the_ID(); ?>" < ?php post_class(); ?>> ..... </div> < ?php endwhile; endif; ?> |
JS去掉字符串前后空格的五种方法 WordPress定时发布失败的解决方法