Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <?php query_posts ('posts_per_page=4'); ?>
  2.  
  3. <?php if (have_posts()) : ?>
  4. <table>
  5. <?php while (have_posts()) : the_post(); ?>
  6. <?php if (($wp_query->post_count) % 2) : ?>
  7. <TR><TD>
  8. <?php while (have_posts()) : the_post(); ?>
  9. <?php the_title(); ?>
  10. <?php the_content('Read the rest of this entry &raquo;'); ?>
  11. <p>Categories: <?php the_category(' '); ?></p>
  12. <?php the_tags('Tags:', ', ', '<br />'); ?> </TD>
  13. <?php endwhile; ?>
  14.  
  15. <?php else : ?>
  16.  
  17. <?php while (have_posts()) : the_post(); ?>
  18. <td>
  19. <?php the_title(); ?>
  20. <?php the_content('Read the rest of this entry &raquo;'); ?>
  21. <p>Categories: <?php the_category(' '); ?></p>
  22. <?php the_tags('Tags:', ', ', '<br />'); ?> </TD> </TR>
  23. <?php endwhile; ?>
  24. <?php endwhile; ?>
  25. </table>
  26.  
  27.  
  28. <?php posts_nav_link('','','&laquo; Previous Entries') ?>
  29. <?php posts_nav_link('','Next Entries &raquo;','') ?>
  30.  
  31. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement