Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #361189

    Hi,
    I noticed pagination does not work when using ajax search.
    How can we remove pagination, so that all results are displayed?

    example issue here http://shoplocalraleigh.org/?s=food

    thanks,
    larry

    #361569

    Hi pixallus!

    Add this to the bottom of your functions.php file.

    add_filter( 'pre_get_posts', 'enfold_customization_search_results' );
    function enfold_customization_search_results( $wp_query ) {
    	if ( is_search() ) {
    		$wp_query->query_vars["posts_per_page"] = 999;
    	}
    }

    Cheers!
    Elliott

    #361695

    perfect, thanks Elliot!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Search Pagination’ is closed to new replies.