Skip to content

Instantly share code, notes, and snippets.

@jbd91
Last active October 16, 2019 14:24
Show Gist options
  • Select an option

  • Save jbd91/eabb4181ec7536e364841e494af35d6a to your computer and use it in GitHub Desktop.

Select an option

Save jbd91/eabb4181ec7536e364841e494af35d6a to your computer and use it in GitHub Desktop.
WP Query
<?php
$args = [
'post_type' => 'page',
'posts_per_page' => -1,
];
$query = new WP_Query($args);
if ($query->have_posts()) : ?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment