Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active October 3, 2017 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/4cb7b408fa09ec1b00cd to your computer and use it in GitHub Desktop.
Save mgibbs189/4cb7b408fa09ec1b00cd to your computer and use it in GitHub Desktop.
FacetWP - remove 200 post limit from SearchWP 2.6+
<?php
add_filter( 'searchwp_swp_query_args', function( $args ) {
if ( isset( $args['facetwp'] ) ) {
$args['posts_per_page'] = -1;
}
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment