Skip to content

Instantly share code, notes, and snippets.

@raewrites
Created January 16, 2015 05: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 raewrites/816f6c4b1a068a3d61df to your computer and use it in GitHub Desktop.
Save raewrites/816f6c4b1a068a3d61df to your computer and use it in GitHub Desktop.
Get Post
<?php
function my_function() {
if ( is_home() && $query->is_main_query() ) {
$query->set( 'post_type', array( 'post', 'custom_post_type') );
return $query;
}
}
add_action( 'pre_get_posts', 'my_function');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment