Skip to content

Instantly share code, notes, and snippets.

View HasanGokce's full-sized avatar
🎯
Focusing

Hasan Gokce HasanGokce

🎯
Focusing
View GitHub Profile
@HasanGokce
HasanGokce / loop-custom.php
Created September 7, 2018 13:06 — 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(); ?>