Created
June 18, 2014 00:34
-
-
Save bmoredrew/f12e6b5839d39f9ab8b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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