Advertisement
Guest User

Untitled

a guest
Jun 13th, 2017
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php get_header() ?>
  2. <div id=&quot;content-box&quot;>
  3.   <div id=&quot;content&quot;>
  4.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  5.     <div class=&quot;post&quot;>
  6.       <div class=&quot;postinfo&quot; id=&quot;commentslink2-bottom&quot;>
  7.         <div class=&quot;date&quot;>
  8.           <?php the_time('Y'); ?>
  9.           <br />
  10.           <?php the_time('m.d'); ?>
  11.         </div>
  12.         <div class=&quot;single-title&quot;>
  13.           <h2>
  14.             <a href=&quot;&quot;
  15.               <?php the_permalink() ?>&quot;><?php the_title() ?>
  16.             </a>
  17.           </h2>
  18.         </div>
  19.         <p class=&quot;commentslink2&quot;>
  20.           In <?php the_category(' ,') ?> | Tags: <?php the_tags('') ?><?php if(function_exists('the_views')) {echo &quot; | &quot;; the_views(); } ?> <?php edit_post_link('Edit', '[', ']'); ?>
  21.         </p>
  22.       </div>
  23.       <div class=&quot;postcontent&quot;>
  24.         <?php the_content() ?>
  25.         <?php wp_link_pages('before=<div class=&quot;nav_link&quot;><strong>Pages: </strong>&after=</div>&next_or_number=number&pagelink=<span class=&quot;page_number&quot;>%</span>'); ?>
  26.       </div>
  27.       <div id=&quot;add-info&quot;>
  28.         <?php if ( function_exists(st_related_posts) ) {st_related_posts('title=<h3>Related posts</h3>');} ?>
  29.       </div>
  30.     </div>
  31.     <?php comments_template(); ?>
  32.     <?php endwhile; else: ?>
  33.     <?php endif; ?>
  34.   </div>
  35.   <!--content-->
  36. </div>
  37. <!-- content-box -->
  38. <?php get_sidebar() ?>
  39. <?php get_footer() ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement