Guest

Category.php

By: icodeinpink on Jan 28th, 2012  |  syntax: PHP  |  size: 1.13 KB  |  hits: 26  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <div class="mainBoxIndex">
  2.                                 <h2 style="padding-top:5px;"><?php
  3.                                         printf( __( 'You are here: %s | <a class="goBack" href="javascript:history.go(-1)">Go Back</a>', 'twentyten' ), '' . single_cat_title( '', false ) . '' );
  4.                                 ?></h2>
  5.                                 <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) == 0) : $wp_query->next_post(); else : the_post(); ?>
  6.  
  7. <div id="left-column">
  8. <h1><a href="<?php the_permalink();?>"><?php the_title();?></a></h1>
  9. <p class="locationInfo"><?php the_field('location_field');?></p>
  10. <img src="<?php echo the_field('featured_image'); ?>"/>
  11. </div>
  12.  
  13. <?php endif; endwhile; else: ?>
  14. <div>Alternate content</div>
  15. <?php endif; ?>
  16.  
  17. <?php $i = 0; rewind_posts(); ?>
  18.  
  19. <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?>
  20.  
  21. <div id="right-column">
  22. <h1><a href="<?php the_permalink();?>"><?php the_title();?></a></h1>
  23. <p class="locationInfo"><?php the_field('location_field');?></p>
  24. <img src="<?php echo the_field('featured_image'); ?>"/>
  25. </div>
  26.  
  27. <?php endif; endwhile; ?>
  28. <div>Alternate content</div>
  29. <?php endif; ?>
  30.         </ul>
  31. </div>