分页显示但不会超过首页

时间:2018-05-02 18:31:09

标签: wordpress pagination

我的分页不会超过第一页。我将鼠标悬停在2链接上并显示链接,但显示/ page / 2 /,然后当我点击链接时,它不会将其附加到网址的末尾。

以下是我正在使用的代码:

<?php
        if ($type == "events" ) { ?>
          <div class="row">
            <h4>Filter:</h4>
            <?php
              query_posts(array(
              'post_type' => 'events',
              'showposts' => 1,
              ));
            ?>
            <ul>
            <?php while (have_posts()) : the_post(); ?>
              <li>
              <h2><?php the_title(); ?></h2>
              <h3><img src="<?php echo get_home_url(); ?>/images/icon_clock.png" />Date: <?php the_field('event_start_date'); ?> - <?php the_field('event_end_date'); ?></h3>
              <h3><img src="<?php echo get_home_url(); ?>/images/icon_pin.png" />Location: <?php the_field('event_location'); ?></h3>
              <h3><img src="<?php echo get_home_url(); ?>/images/icon_booth.png" />Booth: <?php the_field('event_booth'); ?></h3>
              <h3><img src="<?php echo get_home_url(); ?>/images/icon_details.png" />Details:</h3>
              <p><?php the_field('event_description'); ?></p>
              </li>
            <?php endwhile;?>
            <?php get_template_part('pagination'); ?>
            <?php wp_reset_query(); ?>
            </ul>
          </div>
        <?php } ?>

任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

请用 posts_per_page

替换 showposts

例如,

 query_posts(array(
          'post_type' => 'events',
          'posts_per_page' => 1,
          ));

希望这会对你有所帮助。

有关详细信息,请访问WordPress Pagination