
Untitled
By: a guest on
May 5th, 2012 | syntax:
None | size: 1.72 KB | hits: 6 | expires: Never
<?php get_header(); ?>
<!--<h4 class="section_heading">Featured Weddings</h4>-->
<?php if (have_posts()) : ?>
<?php query_posts('cat=9&tag=featured&showposts=3');?>
<?php $i = 0; ?>
<?php while (have_posts()) : the_post(); $i++; ?>
<div class="span-8 post-<?php the_ID(); ?><?php if ($i == 3) { ?> last<?php } ?>">
<?php get_the_image( array( 'custom_key' => array( 'thumbnail' ), 'default_size' => 'thumbnail', 'width' => '310', 'height' => '150' ) ); ?>
<h6 class="archive-header"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a></h6>
<?php the_excerpt(); ?>
<p class="read_more"><a title="Read more about <?php the_permalink(); ?>" href="<?php the_permalink(); ?>">Read More</a></p>
</div>
<?php if ($i == 3) { ?><div class="archive-stack clear"></div><?php $i = 0; } ?>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query;?>
<?php $loop = new WP_Query( array( 'post_type' => 'home-blurp', 'posts_per_page' => 3 ) ); ?>
<?php $i = 0; ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); $i++; ?>
<div class="span-8 post-<?php the_ID(); ?><?php if ($i == 3) { ?> last<?php } ?>">
<h6 class="archive-header"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a></h6>
<?php the_content(); ?>
</div>
<?php if ($i == 3) { ?><div class="archive-stack clear"></div><?php $i = 0; } ?>
<?php endwhile; ?>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<?php include (TEMPLATEPATH . "/bottom.php"); ?>
<?php get_footer(); ?>