Advertisement
Guest User

content.php

a guest
Nov 28th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. /**
  3. * The default template for displaying content.
  4. */
  5. ?>
  6.  
  7. <article <?php post_class(); ?>>
  8.  
  9. <div class="date-stamp">
  10.  
  11. <?php the_time('F jS, Y') ?>
  12.  
  13. </div>
  14.  
  15. <header class="post-header">
  16. <h1><?php the_title(); ?></h1>
  17. <?php the_post_thumbnail(); ?>
  18.  
  19.  
  20. </header>
  21.  
  22. <div class="post-content">
  23.  
  24. <?php the_content(); ?>
  25.  
  26. </div>
  27.  
  28. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement