Advertisement
Avi

single.php

Avi
Mar 24th, 2011
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <!-- BEGIN PAGE -->
  4. <div id="page">
  5. <div id="page-inner" class="clearfix">
  6. <div id="content">
  7. <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
  8. <div id="post-<?php the_ID(); ?>" class="post clearfix">
  9.  
  10. <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  11. <?php include (TEMPLATEPATH . '/includes/postmeta.php'); ?>
  12.  
  13. <div class="entry" class="clearfix">
  14.  
  15. <?php the_content(); ?>
  16.  
  17. <?php wp_reset_query(); ?>
  18. <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
  19. <!-- <?php trackback_rdf(); ?> -->
  20. </div> <!-- end div .entry -->
  21.  
  22. <div class="divider no_border"></div>
  23.  
  24. <div id="nav-below" class="clearfix">
  25. <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
  26. <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
  27. </div><!-- #nav-below -->
  28.  
  29. <div class="comments">
  30. <?php comments_template(); ?>
  31. </div> <!-- end div .comments -->
  32.  
  33. </div> <!-- end div .post -->
  34.  
  35. <?php endwhile; ?>
  36. <?php else : ?>
  37. <div class="post">
  38. <h3><?php _e('404 Error&#58; Not Found'); ?></h3>
  39. </div>
  40. <?php endif; ?>
  41.  
  42. </div> <!-- end div #content -->
  43.  
  44. <?php get_sidebar(); ?>
  45. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement