Advertisement
utnalove

Blog Layout

Dec 8th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Blog Layout
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7. <div id="middle_single">
  8. <?php rewind_posts();if (have_posts()) : ?>
  9.  
  10. <?php get_template_part( 'content', get_post_format() ); ?>
  11.  
  12. <?php if (function_exists("pagination")) {pagination();} ?>
  13. <?php else : ?>
  14. <h2 class="center"><?php _e("Not found","language")?></h2>
  15. <?php endif; ?>
  16. </div>
  17.  
  18. <?php get_sidebar()?>
  19. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement