<?php
$args = array('posts_per_page' => 4, 'post_type' => 'articles');
$q = new WP_Query($args);
if ($q->have_posts()) : while ($q->have_posts()) : $q->the_post(); ?>
HTML Шаблон
<?php endwhile; endif; ?>
<?php wp_reset_postdata(); ?>