Levdbas
2/23/2017 - 11:36 AM

Wordpress Custom loop

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(); ?>