Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created December 18, 2020 16:57
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 djrmom/30b034f17d1ef48671ebae9e60cded24 to your computer and use it in GitHub Desktop.
Save djrmom/30b034f17d1ef48671ebae9e60cded24 to your computer and use it in GitHub Desktop.
facetwp ignore query by posts_per_page
<?php
// Add to your (child) theme's functions.php
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 2 > $query->get( 'posts_per_page', 0 ) ) {
$is_main_query = false;
}
return $is_main_query;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment