Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <?php while ( have_posts() ) : the_post(); ?>
  2. <?php if ( is_single() ) : ?>
  3. <div class="post-heading-info">
  4. <!--Post heading info like title, category goes here -->
  5. </div>
  6. <?php endif; ?>
  7. <?php endwhile; ?>
  8. <?php //sidebar widget goes here ?>
  9.  
  10. <?php while ( have_posts() ) : the_post(); ?>
  11. <?php if ( is_single() ) : ?>
  12. <div class="post-content">
  13. <!--Post content and footer goes here-->
  14. </div>
  15. <?php endif; ?>
  16. <?php endwhile; ?>
  17.  
  18. <?php while ( have_posts() ) : the_post(); ?>
  19. <?php get_template_part('content', 'single-heading');?>
  20. <?php endwhile; ?>
  21. <?php //sidebar widget goes here ?>
  22. <?php while ( have_posts() ) : the_post(); ?>
  23. <?php get_template_part('content', 'single');?>
  24. <?php endwhile; ?>
  25.  
  26. <div class="post-content">
  27. <!--Post content and footer goes here-->
  28. </div>
  29.  
  30. <div class="post-heading-info">
  31. <!--Post heading info like title, category goes here -->
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement