Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.01 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  4.            
  5.             <div class="grid_16 alpha"> <h2 class="single"><?php the_title(); ?></h2></div>
  6.            
  7.             <div id="main" class="grid_12 alpha">
  8.            
  9.             <div class="entry">
  10.                
  11.                 <?php if ( get_option('woo_disable_single') <> "true" ) woo_get_image('image','700'); ?>
  12.                
  13.                 <?php the_content(); ?>
  14.                
  15.                  <?php edit_post_link(__('Edit this post.'), ' &#45; ', ''); ?>
  16.                
  17.             </div>
  18.            
  19. <?php comments_template(); ?>
  20.             </div><!-- / #main -->            
  21.            
  22.             <div class="grid_4 omega">
  23.             <p class="post_meta"><span class="date"><?php _e('Posted on ',woothemes); ?> <?php the_time('F jS, Y') ?></span></p>
  24.             <p class="post_meta"><span class="details"><?php _e('Archived in ',woothemes); ?> <?php the_category(', ') ?></span></p>
  25.             <p class="post_meta"><span class="comments"><a href="#respond"><?php _e('Leave a comment',woothemes); ?></a></span></p>
  26.             <div style="clear:both;height:20px;border-bottom:1px solid #eee;margin-bottom: 20px;"></div>
  27.            
  28.             <h4 class="tags"><?php _e('Tags',woothemes); ?></h4>
  29.              <?php the_tags('', ', ', '<br />'); ?>
  30.              
  31.              <div style="clear:both;height:10px;border-bottom:1px solid #eee;margin-bottom: 20px;"></div>
  32.              
  33.              <div class="navigation">
  34.                     <div class="previous">
  35.                     <h4><?php _e('Previous Post',woothemes); ?></h4>
  36.                     <p><?php previous_post_link('%link') ?></p>
  37.                     </div>
  38.                     <div class="next">
  39.                     <h4><?php _e('Next Post',woothemes); ?></h4>
  40.                     <p><?php next_post_link('%link') ?></p>
  41.                     </div>
  42.                 </div>
  43.                
  44.                  <div style="clear:both;height:10px;border-bottom:1px solid #eee;margin-bottom: 20px;"></div>
  45.  
  46.             </div>
  47.            
  48. <?php endwhile; endif; ?>
  49.                        
  50. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement