Skip to content

Instantly share code, notes, and snippets.

@vince844
vince844 / loop-custom.php
Created August 26, 2018 13:15 — forked from kevinwhoffman/loop-custom.php
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(); ?>