Skip to content

Instantly share code, notes, and snippets.

@adahhane
Created May 13, 2012 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adahhane/2690664 to your computer and use it in GitHub Desktop.
Save adahhane/2690664 to your computer and use it in GitHub Desktop.
my get_post
<?php
add_filter( 'pre_get_posts', 'my_get_posts' );
function my_get_posts( $query ) {
if ( is_home()){
$query->set( 'post_type', array( 'information','post') );
}
return $query;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment