Skip to content

Instantly share code, notes, and snippets.

@tormjens
Created June 29, 2015 11:12
Show Gist options
  • Save tormjens/a71c370b10f947796d63 to your computer and use it in GitHub Desktop.
Save tormjens/a71c370b10f947796d63 to your computer and use it in GitHub Desktop.
Query Filter
add_action('pre_get_posts', function($query) {
if(is_admin()) {
return;
}
if(!$query->is_main_query()) {
return;
}
$query->set('cat', 1234);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment