Advertisement
alchymyth

Untitled

Aug 18th, 2011
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.27 KB | None | 0 0
  1. <?php if (have_posts()) : ?>
  2. <div id="left-column">
  3. <?php while(have_posts()) : $i++; if(($i % 2) == 0) : $wp_query->next_post(); else : the_post(); ?>
  4.  
  5.    
  6.         <a href="#"><img class="post-image" src="<?php echo bloginfo('template_directory') . '/img/postImages/alba1.jpg'; ?>" alt="" title=""/></a>
  7.         <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  8.         <?php the_content(); ?>                                                
  9.  
  10. <?php endif; endwhile; ?>
  11. </div>
  12. <?php else: ?>
  13.     <p>Sorry, it doesn't appear as if there are any posts. <a href="<?php bloginfo('url'); ?>">Click here</a> to go back to the home page.</p>         
  14.    
  15. <?php endif; ?>
  16.                    
  17. <?php $i = 0; rewind_posts(); ?>
  18.                    
  19. <?php if (have_posts()) : ?>
  20. <div id="right-column">
  21. <?php while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?>
  22.    
  23.         <a href="#"><img class="post-image" src="<?php echo bloginfo('template_directory') . '/img/postImages/alba1.jpg'; ?>" alt="" title=""/></a>
  24.         <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  25.         <?php the_content(); ?>                    
  26.  
  27. <?php endif; endwhile; ?>
  28. </div>
  29. <?php else: ?>
  30.     <p>Sorry, it doesn't appear as if there are any posts. <a href="<?php bloginfo('url'); ?>">Click here</a> to go back to the home page.</p>
  31.    
  32. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement