Skip to content

Instantly share code, notes, and snippets.

@robertuniqid
Created June 6, 2018 20:46
Show Gist options
  • Save robertuniqid/15cb6bb2ced2d71a209f76d160227aea to your computer and use it in GitHub Desktop.
Save robertuniqid/15cb6bb2ced2d71a209f76d160227aea to your computer and use it in GitHub Desktop.
<?php
add_filter( "pre_get_posts", 'example_code_supress_filter', 100 );
function example_code_supress_filter( $query ) {
$query->set( 'suppress_filters', false );
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment