
Untitled
By: a guest on
Apr 10th, 2012 | syntax:
PHP | size: 1.12 KB | hits: 8 | expires: Never
<div class="row">
<div class="twelve columns hide-on-phones top-featured">
<?php $featured_big = new WP_Query('category_name=featured&posts_per_page=2'); ?>
<?php while ($featured_big->have_posts()) : $featured_big->the_post(); ?>
<div class="featured-thumbs-top">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail( 'homepage-big-featured' ); echo'<p class="big-featured-caption">';the_title();echo'</p>'; ?>
</a>
</div>
<?php endwhile; ?>
<?php $featured_small = new WP_Query('category_name=featured&posts_per_page=4'); ?>
<?php while ($featured_small->have_posts()) : $featured_small->the_post(); ?>
<div class="featured-thumbs-bottom">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail( 'homepage-small-featured' ); echo'<p class="small-featured-caption">';the_title();echo'</p>'; ?>
</a>
</div>
<?php endwhile; ?>
</div>
</div>