Skip to content

Instantly share code, notes, and snippets.

@quagliato
Created September 6, 2013 20:42
Show Gist options
  • Save quagliato/6469730 to your computer and use it in GitHub Desktop.
Save quagliato/6469730 to your computer and use it in GitHub Desktop.
Iterate a specific post-type
<?php
$query = new WP_Query(
array(
'post_type' => '<post-type-name>'
)
);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment