Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created February 8, 2021 14:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djrmom/06f0c05b94d45afd7a719e696f85738a to your computer and use it in GitHub Desktop.
Save djrmom/06f0c05b94d45afd7a719e696f85738a to your computer and use it in GitHub Desktop.
facetwp GDPR Cookie Consent compatiblity
<?php
/** ignore query added by GDPR Cookie Consent **/
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 'cookielawinfo' == $query->get( 'post_type' ) ) {
$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