Advertisement
Guest User

Untitled

a guest
Jul 16th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Thank You
  4. */
  5.  
  6. ?>
  7.  
  8. <?php get_header(); ?>
  9.  
  10. </div><!-- /#top -->
  11.  
  12. <div id="content">
  13. <div class="col-full">
  14. <div id="main" class="fullwidth">
  15.  
  16. <?php if (have_posts()) : $count = 0; ?>
  17. <?php while (have_posts()) : the_post(); $count++; ?>
  18.  
  19. <div class="post">
  20.  
  21. <div class="entry">
  22. <?php the_content(); ?>
  23. </div><!-- /.entry -->
  24.  
  25. </div><!-- /.post -->
  26.  
  27. <?php $comm = get_option('woo_comments'); if ( 'open' == $post->comment_status && ($comm == "page" || $comm == "both") ) : ?>
  28. <?php comments_template(); ?>
  29. <?php endif; ?>
  30.  
  31. <?php endwhile; else: ?>
  32. <div class="post">
  33. <p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p>
  34. </div><!-- /.post -->
  35. <?php endif; ?>
  36.  
  37. </div><!-- /#main -->
  38.  
  39. </div><!-- /#col-full -->
  40. </div><!-- /#content -->
  41.  
  42. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement