Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created February 8, 2021 13:37
Show Gist options
  • Save mgibbs189/a68fef5802901d7827203387bb68a137 to your computer and use it in GitHub Desktop.
Save mgibbs189/a68fef5802901d7827203387bb68a137 to your computer and use it in GitHub Desktop.
<?php
// Add to your (child) theme's functions.php
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 2 === (int) $query->get( 'posts_per_page' ) ) {
$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