awhedbee22
7/28/2014 - 7:55 PM

Wordpress Loop

Wordpress Loop

<?php
    $topTwelveCoral = array(
      'post_type'      => 'NAME',
      'posts_per_page' => 3
    );
    $my_query = new WP_Query( $topTwelveCoral );
    while ($my_query->have_posts()) : $my_query->the_post();
    $do_not_duplicate = $post->ID;
?>

    <h2><?php the_title(); ?></h2>

<?php endwhile; ?>