Guest User

Untitled

a guest
Jun 15th, 2017
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <main id="content">
  3.  
  4. <?php while (have_posts()) : the_post();
  5.  
  6. get_template_part( 'content', get_post_format() );
  7.  
  8. if ( comments_open() || get_comments_number() ) {
  9. do_action( 'basic_before_post_comments_area' );
  10. comments_template();
  11. do_action( 'basic_after_post_comments_area' );
  12. }
  13.  
  14. endwhile; ?>
  15.  
  16.  
  17.  
  18. </main> <!-- #content -->
  19. <?php if ( function_exists( "get_yuzo_related_posts" ) ) { get_yuzo_related_posts(); } ?>
  20. <?php get_sidebar(); ?>
  21. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment