$the_query = new WP_Query( array(‘category_name’ => ‘DLP’) );
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo ‘
‘;
}
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
echo ‘no posts found’;
}