bikerabhinav

Untitled

Mar 15th, 2011
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <?php
  2. if(is_category()){ ?>
  3. <div id="left-column">
  4. <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) == 0) : $wp_query->next_post(); else : the_post(); ?>
  5. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  6. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'premiumqualitythemes' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  7. <div class="entry-content">
  8. <div style="float: left; margin-right: 5px;">
  9. <?php the_post_thumbnail( array(150,150) ); ?>
  10. </div>
  11. <?php the_content(); ?>
  12. </div></div>
  13. <?php endif; endwhile; else: ?>
  14. <div>Alternate content</div>
  15. <?php endif; ?>
  16. </div>
  17.  
  18. <?php $i = 0; rewind_posts(); ?>
  19. <div id="right-column">
  20. <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?>
  21.  
  22. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  23. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'premiumqualitythemes' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  24. <div class="entry-content">
  25. <div style="float: left; margin-right: 5px;">
  26. <?php the_post_thumbnail( array(150,150) ); ?>
  27. </div>
  28. <?php the_content(); ?>
  29. </div></div>
  30.  
  31. <?php endif; endwhile; else: ?>
  32. <div>Alternate content</div>
  33. <?php endif; } ?>
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment