Wordpress Custom loop
<?php $the_query = new WP_Query( array(
'post_type' => 'referenties'
));
?>
<?php if ($the_query->have_posts() ) :?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php endwhile; ?>
<?php endif; wp_reset_query(); ?>