分页不在主index.php中工作

时间:2014-06-16 14:04:41

标签: php wordpress pagination

因此,我显示旧帖子的链接未显示在我的主要博客页面http://surechamp.com/blog/上,它在我的archive.php中显示正常,因此我不确定为什么会这样做没有使用index.php。我使用下划线作为我的基本主题来解决问题。这是我的代码:

        <?php /* Start the Loop */ ?>
        <?php while ( have_posts() ) : the_post(); ?>

            <?php
                /* Include the Post-Format-specific template for the content.
                 * If you want to override this in a child theme, then include a file
                 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
                 */
                get_template_part( 'content', get_post_format() );
            ?>

        <?php endwhile; ?>

        <?php _s_paging_nav(); ?>

    <?php else : ?>

        <?php get_template_part( 'content', 'none' ); ?>


    <?php endif; ?>

1 个答案:

答案 0 :(得分:0)

我通常在循环外运行分页导航,并测试是否会显示上一个或下一个链接:

<?php if (  $wp_query->max_num_pages > 1 ) : ?>
    <?php if($wp_query->get('paged') || $wp_query->get('paged') > 1): ?>
        <a class="loadPrev" href="<?php previous_posts(); ?>">prev</a>
    <?php endif; ?>

    <?php if ($next_url = next_posts($wp_query->max_num_pages, false)): ?>
        <a class="loadNext" href="<?php echo $next_url; ?>">next</a>
    <?php endif;?>
<?php endif; ?>