Skip to content

Instantly share code, notes, and snippets.

@brynzovskii
Forked from kevinwhoffman/loop-custom.php
Created January 21, 2018 21:21
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 brynzovskii/a503ecb7d57c728ad0651693c7f35d93 to your computer and use it in GitHub Desktop.
Save brynzovskii/a503ecb7d57c728ad0651693c7f35d93 to your computer and use it in GitHub Desktop.
WordPress - Custom Post Type Loop
<?php
$loop = new WP_Query( array(
'post_type' => 'Property',
'posts_per_page' => -1
)
);
?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<!-- do stuff -->
<?php endwhile; wp_reset_query(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment