Guest User

single.php

a guest
Oct 7th, 2013
66
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. * The Template for displaying all single posts.
  4. *
  5. * @package Graphene
  6. * @since Graphene 1.0
  7. */
  8.  
  9. get_header(); ?>
  10.  
  11. <?php
  12. /* Run the loop to output the posts.
  13. * If you want to overload this in a child theme then include a file
  14. * called loop-single.php and that will be used instead.
  15. */
  16. the_post();
  17. get_template_part('loop', 'single');
  18. ?>
  19.  
  20. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment