Guest User

Untitled

a guest
Jan 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Page
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7. <?php global $woo_options; ?>
  8.  
  9. <div id="content" class="page col-full">
  10. <div id="main" class="col-left">
  11.  
  12. <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<div id="breadcrumb"><p>','</p></div>'); } ?>
  13.  
  14. <?php if (have_posts()) : $count = 0; ?>
  15. <?php while (have_posts()) : the_post(); $count++; ?>
  16.  
  17. <div class="post page">
  18.  
  19. <h2 class="title"><?php the_title(); ?></h2>
  20.  
  21. <div class="entry">
  22. <?php the_content(); ?>
  23. </div>
  24.  
  25. </div><!-- /.post -->
  26.  
  27. <?php $comm = $woo_options['woo_comments']; if ( ($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. <?php get_sidebar(); ?>
  40.  
  41. </div><!-- /#content -->
  42.  
  43. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment