Skip to content

Instantly share code, notes, and snippets.

@hunk
Created January 15, 2014 20:27
Show Gist options
  • Select an option

  • Save hunk/8443894 to your computer and use it in GitHub Desktop.

Select an option

Save hunk/8443894 to your computer and use it in GitHub Desktop.
<?php
query_posts( array(
'post_type' => array( 'post', 'postType1', 'postType2', 'other_post_type' ),
'showposts' => 5 )
);
?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<p><?php the_title(); ?></p>
<p><?php the_content(); ?></p>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment