Skip to content

Instantly share code, notes, and snippets.

@emarket-design
Created January 8, 2015 17:58
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 emarket-design/ccfd734261e28c96f4e8 to your computer and use it in GitHub Desktop.
Save emarket-design/ccfd734261e28c96f4e8 to your computer and use it in GitHub Desktop.
Display Latest tickets on your WordPress home page
add_filter( 'pre_get_posts', 'my_get_posts' );
function my_get_posts( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( 'post_type', array( 'emd_ticket' ) );
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment