Advertisement
Guest User

about.php code

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