Tagged: pagination, search
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
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
perfect, thanks Elliot!