Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <?php
  2. get_header();
  3. get_sidebar();
  4. ?>
  5. <div class="main blogsingle grid_17">
  6.  
  7. <h2 class="title"><?php echo get_option('fotofolio_blog_title'); ?></h2>
  8. <div class="postmain">
  9. <?php if (have_posts()) : while (have_posts()) : the_post(); ?><?php the_post_thumbnail('thumbnail'); ?>
  10. <div class="blogpost">
  11. <h3><?php the_title(); ?></h3>
  12. <div class="meta"><?php _e('Published', 'wpop'); ?>: <?php echo get_the_date(); ?>, on <?php the_category(', '); ?></div>
  13. <?php the_content(); ?>
  14. </div>
  15. <div class="navigation">
  16. <div class="alignright"><?php previous_post_link( '%link', __('Next'), TRUE ); ?></div>
  17. <div class="alignleft"><?php next_post_link( '%link', __('Previous'), TRUE ); ?></div>
  18. <div class="clear"></div>
  19. </div>
  20. </div>
  21.  
  22. <?php get_sidebar('blog'); ?>
  23. <div class="clear"></div>
  24. <div class="section">
  25. <div class="comments">
  26. <?php comments_template(); ?>
  27. </div>
  28. <div class="clear"></div>
  29. </div>
  30. <?php endwhile; endif;?>
  31. </div> <!-- end of main -->
  32. <div class="clear"></div>
  33. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement