简体   繁体   English

分页和自定义WP查询

[英]Pagination and custom WP Query

I allow my visitors to order posts by a price filter on my category.php. 我允许我的访客通过我的category.php上的价格过滤器订购帖子。 They have 2 options: "Max Price" and "Min Price". 它们有2个选项:“最高价格”和“最低价格”。 When a filter is selected the query works fine. 选择过滤器后,查询工作正常。 Pagination appears but it doesn't work correctly. 分页出现,但无法正常工作。 It always shows the first post on my "page/2/", "page/3/"... 它总是在我的“ page / 2 /”,“ page / 3 /”上显示第一篇文章。

I don't know why it doesn't work Can you help me? 我不知道为什么它不起作用您能帮我吗?

    <?php get_header(); ?>
    <section id="primary" class="content-area">
        <main id="main" class="site-main" role="main">
            <header class="pages-header col-md-12">
                <h1 class="page-title"> <?php single_cat_title(); ?> </h1>

                    <?php echo get_field('petite_description_cat', 'category_' . $cat);?>
                </header><!-- .page-header -->

                  <?php
                        //Display form for the query
                     if($_GET['minprice'] && !empty($_GET['minprice']))
                        {
                            $minprice = $_GET['minprice'];
                        } else {
                            $minprice = 0;
                        }

                        if($_GET['maxprice'] && !empty($_GET['maxprice']))
                        {
                            $maxprice = $_GET['maxprice'];
                        } else {
                            $maxprice = 999999;
                        }
                    ?>

                <form method="get">
                    <label>min:</label>
                      <input type="number" name="minprice" value="<?php echo $minprice; ?>">
                    <label>max:</label>
                      <input type="number" name="maxprice" value="<?php echo $maxprice; ?>">
                    <button type="submit" name="">Filter</button>
                </form>

<?php
  // set up or arguments for our custom query
  $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
      $args = array(
                'cat' => $cat,
                'post_type' => 'post',
                'posts_per_page' => 5,
                'meta_query' => array(
                      array(
                         'key' => 'prix',
                         'type' => 'NUMERIC',
                         'value' => array($minprice, $maxprice),
                         'compare' => 'BETWEEN'
                             ),
                     )
                 );
  // create a new instance of WP_Query
  $the_query = new WP_Query($args);
?>

<?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); // run the loop ?>

  <?php
    //on récupère le template
     get_template_part( 'content-category', get_post_format() ); ?>


<?php endwhile; ?>

<?php if ($the_query->max_num_pages > 1) { // check if the max number of pages is greater than 1  ?>
  <div class="clearfix"></div>

<?php //pagination
bootstrap_pagination();?>

<?php } ?>

<?php else: ?>
        <?php get_template_part( 'no-results', 'archive' ); ?>
  <?php endif; ?>

<?php
 wp_reset_query();
 //display description only on page 1
  $page = (get_query_var('paged')) ? get_query_var('paged') : 1;
  if ($page ==1)  {  echo category_description ( get_category_by_slug ( 'category-slug' )-> term_id );
  } ?>

  </main><!-- #main -->
</section><!-- #primary -->

<?php get_footer(); ?>

解决方案只是$ args中的这个!

'paged'          => $paged,

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM