Wordpress Kriesi分页问题

时间:2013-05-04 00:24:11

标签: php wordpress wordpress-theming

我无法在我的网站上找出这个分页问题。问题是第2页显示与第1页相同的内容。它不应该这样做。

<?php
                $args = array( 'post_type' => 'baseball-news', 'posts_per_page' => 5 );
                $baseball_loop = new WP_Query( $args );
                while ( $baseball_loop->have_posts() ) : $baseball_loop->the_post();
                ?>

                    <?php   
                    if ( get_post_type() == 'baseball-news' ) : ?>

                        <?php include( TEMPLATEPATH . '/includes/show-baseball-posts.php' ); ?>

                    <?php endif; ?>

                <?php endwhile; ?>
                <?php kriesi_pagination($baseball_loop->max_num_pages); ?>
                <?php wp_reset_query(); ?>

This is the site for Kriesi pagination.

Site

1 个答案:

答案 0 :(得分:4)

您未在查询中使用分页参数分页。你这样使用它:

<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
$args = array( 'post_type' => 'baseball-news', 'posts_per_page' => 5 ,  'paged' => $paged );