Support

Account

Home Forums General Issues I have problem with pagination

Solved

I have problem with pagination

  • Hi, I’m a newbie for WordPress. I’m having problems. The code below

    <?php
    /**
     * The template for displaying search results pages.
     *
     * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
     *
     * @package storeone
     */
    get_header();
    ?>
    <div class="container-fluid bgs-space bgs-blog">
    	<div class="container">
    		<div class="row">
    			<div class="col-md-9 col-sm-9 col-xs-12 bgs-blog-right">
    				<?php 
    					$args = apply_filters(
    						'acf/fields/post_object/query/',
    						get_search_query(),
    						isset($_GET['topic_type']) ? $_GET['topic_type'] : null, 
    						isset($_GET['real_estate_type']) ? $_GET['real_estate_type'] : null, 
    						isset($_GET['no_of_room']) ? $_GET['no_of_room'] : null, 
    						isset($_GET['no_of_bath_room']) ? $_GET['no_of_bath_room'] : null,
    						isset($_GET['minp']) ? $_GET['minp'] : null, 
    						isset($_GET['maxp']) ? $_GET['maxp'] : null);
    					$get_posts = new WP_Query( $args );
    				?>
    					<?php
    					if ( $get_posts->have_posts() ) : ?>
    
    						<div class="page-header">
    							<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'storeone' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
    						</div><!-- .page-header -->
    
    						<div id="bgs-blog-content" class="row blog-gallery bgs-posts search-result">
    						<?php
    						/* Start the Loop */
    						while ( $get_posts->have_posts() ) : $get_posts->the_post();
    
    							/**
    							 * Run the loop for the search to output the results.
    							 * If you want to overload this in a child theme then include a file
    							 * called content-search.php and that will be used instead.
    							 */
    							get_template_part( 'template-parts/content', 'search' );
    
    						endwhile;
    						?>
    						</div>
    						<div class="row bgs-pagination">
    							<?php the_posts_pagination();?>
    						</div>
    						<?php
    					else :
    						wp_reset_query();
    						get_template_part( 'template-parts/content', 'none' );
    
    					endif; ?>
    			</div>
    			<?php get_sidebar(); ?>
    		</div>
    	</div>
    </div>
    <?php
    get_footer();

    It display great results, but the pagination bar does not display.
    Thanks for the help.

  • [SOLVED]
    just change
    'no_found_rows' = > false
    to
    'no_found_rows' = > true

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘I have problem with pagination’ is closed to new replies.