Advertisement
Guest User

Untitled

a guest
Dec 8th, 2011
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <!-- GET THE LAST 3 POSTS -->
  2.  
  3.  
  4. <?php
  5. require('blog/wp-blog-header.php');
  6. ?>
  7.  
  8. <?php $posts = get_posts('numberposts=3');
  9. foreach ($posts as $post) : start_wp(); ?>
  10. <div id="content">
  11. <div class="post">
  12.  
  13. <h2 class="title"><?php the_title(); ?> </h2>
  14. <p class="meta"><span class="date"><?php the_date(); echo "<br />"; ?></span><span class="posted">Posted by <a href="about.html">Dave</a></span>
  15. <div style="clear: both;">&nbsp;</div>
  16. <div class="entry">
  17. <?php the_content(); ?>
  18. </div>
  19. </div>
  20. <div style="clear: both;">
  21.  
  22. <?php comments_template(); ?>
  23. </div>
  24. </div>
  25. </p>
  26.  
  27. <?php
  28. endforeach;
  29. ?>
  30. <div class="cleared"><span style="clear: both;"></span></div>
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement