Skip to content

Instantly share code, notes, and snippets.

@bmoredrew
Created June 18, 2014 00:34
Show Gist options
  • Save bmoredrew/f12e6b5839d39f9ab8b4 to your computer and use it in GitHub Desktop.
Save bmoredrew/f12e6b5839d39f9ab8b4 to your computer and use it in GitHub Desktop.
<?php
$loop = new WP_Query( array(
'post_type' => 'team',
'posts_per_page' => 4,
));
?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="article" id="team-member">
<?php the_post_thumbnail('team-thumb'); ?>
<h3><?php the_title(); ?></h3>
<p><?php the_content(); ?></p>
</div>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment