Skip to content

Instantly share code, notes, and snippets.

@Drixled
Last active June 13, 2017 20:18
Show Gist options
  • Save Drixled/17911d2cd25bea8a202dbef94add039c to your computer and use it in GitHub Desktop.
Save Drixled/17911d2cd25bea8a202dbef94add039c to your computer and use it in GitHub Desktop.
<?php
$args = array (
'post_type' => 'post-type',
'posts_per_page' => -1
);
$query = new WP_Query( $args );
?>
<?php while( $query->have_posts() ): $query->the_post(); ?>
[content]
<?php endwhile; wp_reset_postdata(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment