Advertisement
Guest User

Untitled

a guest
Jun 28th, 2012
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <!-- Posts -->
  3. <?php
  4. if (have_posts()): ?>
  5. <?php
  6. query_posts( array( 'cat' => 1, 'posts_per_page' => 4) );
  7. while (have_posts()) : the_post(); ?>
  8.  
  9. <!-- Begin entry -->
  10. <div id="blog-post">
  11. <!-- Post Thumbnail -->
  12. <div style="float:left; margin-right:20px;">
  13. <img src="<?php bloginfo('template_url');?>/images/blog-profile-img.jpg">
  14. </div>
  15. <!-- end Post Thumbnail -->
  16. <!-- Post content -->
  17. <div id="blog-content">
  18. <h5><a href="<?php the_permalink() ?>" rel="bookmark">
  19. <?php the_title(); ?></a></h5>
  20. <small><?php the_date(); ?> by <?php the_author(); ?></small>
  21. <div>
  22. <?php the_content(); ?>
  23. </div>
  24. <p> </p>
  25. </div>
  26. <!-- Post content -->
  27.  
  28. </div>
  29. <!-- end entry -->
  30.  
  31. <?php endwhile; ?>
  32. <?php endif; ?>
  33. <!-- end Posts -->
  34. <!-- Pagination -->
  35. <?php if (will_paginate()): ?>
  36. <table width="100%" border="0" cellspacing="3" cellpadding="3">
  37. <tr>
  38. <td align="left"><?php previous_posts_link('&laquo; Previous Entries') ?></td>
  39. <td align="right"><?php next_posts_link('Next Entries &raquo;','') ?></td>
  40. </tr>
  41. </table>
  42. <?php endif; ?>
  43. <!--end Pagination-->
  44. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement