<div class="mm-top-box">
<?php
$args = array( 'post_type' => 'customerstories', 'posts_per_page' => 1 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
?>
<h1 class="heading"><a href="#">Customer Stories</a></h1>
<div class="mm-img"><?php if ( has_post_thumbnail() ) { ?>
<a class="thumbnail" href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<?php } ?></div>
<div class="mm-content"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a><div class="lm">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Learn More</a></div></div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
<?php
$args = array( 'post_type' => 'customerstories', 'posts_per_page' => 1 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
?>
<h1 class="heading"><a href="#">Customer Stories</a></h1>
<div class="mm-img"><?php if ( has_post_thumbnail() ) { ?>
<a class="thumbnail" href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<?php } ?></div>
<div class="mm-content"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a><div class="lm">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Learn More</a></div></div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
Comments
Post a Comment