Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Home
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7.  
  8. <div id="content">
  9.  
  10. <h4>home</h4>
  11.  
  12. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  13.  
  14.  
  15. <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  16.  
  17. <div class="entry">
  18. <a href="<?php the_permalink(); ?>"></a>
  19.  
  20. <?php
  21. if ( has_post_thumbnail() ) {
  22. the_post_thumbnail();
  23. }else{
  24. echo 'no thumbs';
  25. }
  26. ?>
  27. <?php the_content(); ?>
  28.  
  29.  
  30. </div><!--entry-->
  31.  
  32. </div>
  33.  
  34. <?php endwhile; ?>
  35.  
  36. <?php endif; ?>
  37.  
  38. </div><!-- #content -->
  39.  
  40. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement