Advertisement
Guest User

single.php code

a guest
Apr 29th, 2011
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4. <div id="content"><!-- content begins -->
  5.  
  6. <div id="main"><!-- main begins -->
  7.  
  8. <?php if (have_posts()) : ?>
  9.  
  10. <?php while (have_posts()) : the_post(); ?>
  11.  
  12. <div <?php post_class(); ?>>
  13.  
  14. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  15.  
  16. <p class="meta">
  17.  
  18. by
  19.  
  20. <span><?php the_author(); ?></span>
  21.  
  22. on
  23.  
  24. <span><?php the_date(); ?></span>
  25.  
  26. </p>
  27.  
  28. <div class="post-content">
  29.  
  30. <?php the_content(''); ?>
  31.  
  32. </div><!-- post-content ends -->
  33.  
  34.  
  35.  
  36. </div><!-- post ends -->
  37.  
  38.  
  39. <?php comments_template(); ?>
  40.  
  41.  
  42. <?php endwhile; ?>
  43.  
  44.  
  45. <?php endif; ?>
  46.  
  47.  
  48. </div><!-- main ends -->
  49.  
  50.  
  51. <?php get_sidebar(); ?>
  52.  
  53. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement