Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created October 10, 2018 14:17
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/82a867398ec6bc1410ddf2859b19ec6d to your computer and use it in GitHub Desktop.
Save mgibbs189/82a867398ec6bc1410ddf2859b19ec6d to your computer and use it in GitHub Desktop.
FacetWP ignore the home / blog page
<?php
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
return ( $query->is_home() ) ? false : $is_main_query;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment