Skip to content

Instantly share code, notes, and snippets.

@travi5567
Last active December 11, 2015 19:39
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 travi5567/4650246 to your computer and use it in GitHub Desktop.
Save travi5567/4650246 to your computer and use it in GitHub Desktop.
http://codex.wordpress.org/The_Loop
------------------------------------------------------------------------------
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
Custom Query Sample
------------------------------------------------------------------------------
Put Before Loop
<?php query_posts('category_name=special_cat&posts_per_page=10'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment