Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created May 20, 2013 15:41
Show Gist options
  • Save jlittlejohn/5613047 to your computer and use it in GitHub Desktop.
Save jlittlejohn/5613047 to your computer and use it in GitHub Desktop.
WP: pre_get_posts Filter
// Use as an alternative to query_posts. note: doesn't work for pages
add_action('pre_get_posts','wpse50761_alter_query');
function wpse50761_alter_query($query){
if( $query->is_main_query() ){
//Do something to main query
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment