Skip to content

Instantly share code, notes, and snippets.

@raaar
Created October 29, 2012 11:29
Show Gist options
  • Save raaar/3973056 to your computer and use it in GitHub Desktop.
Save raaar/3973056 to your computer and use it in GitHub Desktop.
WORDPRESS - Set Custom post type as HOMEPAGE
add_filter( 'pre_get_posts', 'my_get_posts' );
function my_get_posts( $query ) {
if ( is_home() )
$query->set( 'post_type', array( 'ale' ) );
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment