Skip to content

Instantly share code, notes, and snippets.

@awhedbee22
Created July 28, 2014 19:55
Show Gist options
  • Save awhedbee22/cd0a739f4bf4141d7763 to your computer and use it in GitHub Desktop.
Save awhedbee22/cd0a739f4bf4141d7763 to your computer and use it in GitHub Desktop.
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; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment