Skip to content

Instantly share code, notes, and snippets.

@ChrisBuchholz
Created July 11, 2013 00:02
Show Gist options
  • Save ChrisBuchholz/5971339 to your computer and use it in GitHub Desktop.
Save ChrisBuchholz/5971339 to your computer and use it in GitHub Desktop.
$query = new WP_Query(array(
'post_type' => 'music',
'posts_per_page' => 5
));
while($query->have_posts()) {
echo "post";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment