Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 1.72 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php get_header(); ?>
  2. <!--<h4 class="section_heading">Featured Weddings</h4>-->
  3. <?php if (have_posts()) : ?>
  4. <?php query_posts('cat=9&tag=featured&showposts=3');?>
  5. <?php $i = 0; ?>
  6. <?php while (have_posts()) : the_post(); $i++; ?>
  7. <div class="span-8 post-<?php the_ID(); ?><?php if ($i == 3) { ?> last<?php  } ?>">
  8. <?php get_the_image( array( 'custom_key' => array( 'thumbnail' ), 'default_size' => 'thumbnail', 'width' => '310', 'height' => '150' ) ); ?>
  9. <h6 class="archive-header"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a></h6>
  10. <?php the_excerpt(); ?>
  11. <p class="read_more"><a title="Read more about <?php the_permalink(); ?>" href="<?php the_permalink(); ?>">Read More</a></p>
  12. </div>
  13. <?php if ($i == 3) { ?><div class="archive-stack clear"></div><?php $i = 0; } ?>
  14. <?php endwhile; ?>
  15. <?php endif; ?>
  16.  
  17. <?php wp_reset_query;?>
  18.  
  19. <?php $loop = new WP_Query( array( 'post_type' => 'home-blurp', 'posts_per_page' => 3 ) ); ?>
  20. <?php $i = 0; ?>
  21.  
  22. <?php while ( $loop->have_posts() ) : $loop->the_post(); $i++; ?>
  23. <div class="span-8 post-<?php the_ID(); ?><?php if ($i == 3) { ?> last<?php  } ?>">
  24. <h6 class="archive-header"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a></h6>
  25. <?php the_content(); ?>
  26. </div>
  27. <?php if ($i == 3) { ?><div class="archive-stack clear"></div><?php $i = 0; } ?>
  28.  
  29. <?php endwhile; ?>
  30.  
  31. <?php else : ?>
  32.  
  33. <h2>Not Found</h2>
  34. <p>Sorry, but you are looking for something that isn't here.</p>
  35. <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  36.  
  37. <?php endif; ?>
  38. <?php include (TEMPLATEPATH . "/bottom.php"); ?>
  39. <?php get_footer(); ?>