Skip to content

Instantly share code, notes, and snippets.

@gecugamo
Created December 3, 2015 17:47
Show Gist options
  • Save gecugamo/6516f416805499dde475 to your computer and use it in GitHub Desktop.
Save gecugamo/6516f416805499dde475 to your computer and use it in GitHub Desktop.
Pre Get Posts Filter
<?php
function pgp_filter( $query ) {
if ( $query->is_main_query() && !is_admin() ) {
$query->set( $key, $value );
}
}
add_action( 'pre_get_posts', 'pgp_filter' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment