Advertisement
Guest User

Untitled

a guest
Aug 9th, 2014
5
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.24 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="wrapper">
  3.     <section class="container-12">
  4.     <?php if (have_posts()) : ?>
  5.     <?php while ( have_posts() ) : the_post(); ?>
  6.         <div class="single-post-wrap col-8 push-2">
  7.             <div class="single-post-feat-img">
  8.                 <figure>
  9.                     <?php the_post_thumbnail('news-thumb-single-post') ?>
  10.                 </figure>
  11.             </div>
  12.             <article>
  13.                 <h4><?php echo get_the_title(); ?></h4>
  14.                 <h6><?php echo get_the_date(); ?></h6>
  15.                 <hr>
  16.                 <p><?php the_content(); ?></p>
  17.                 <h4><?php previous_post_link('<p id="next-link">%link</p>', 'Next Post', TRUE); ?></h4>
  18.                 <hr>
  19.             </article>
  20.             <div class="pagination-bottom">
  21.                 <div class="pre-post">
  22.                 <a href=""><i class="fa fa-angle-left"></i>Previous</a>
  23.                 </div>
  24.                 <div class="next-post"><a href="">Next<i class="fa fa-angle-right"></i></a>
  25.                 </div>
  26.             </div>
  27.         </div>
  28.        
  29.     <?php endwhile; ?>
  30. <?php endif; ?>
  31.     </section>
  32.     <div class="clear"></div>
  33.     <div class="push"></div>
  34. </div>
  35. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement