Skip to content

Instantly share code, notes, and snippets.

@asimpson
Created August 7, 2012 21:35
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 asimpson/3289584 to your computer and use it in GitHub Desktop.
Save asimpson/3289584 to your computer and use it in GitHub Desktop.
WP_Query syntax to easily pull down for use in ST2
<?php
$query = new WP_Query( 'params' );//http://codex.wordpress.org/Function_Reference/WP_Query
while($query->have_posts()) : $query->the_post();
//content goes here
endwhile;
wp_reset_postdata(); // reset the query
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment