Advertisement
Guest User

Untitled

a guest
Aug 19th, 2011
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.40 KB | None | 0 0
  1. <?php if (have_posts()) : ?>
  2.     <div class="one column">
  3.     <?php while(have_posts()) : $i++; if(($i % 2) == 0) : $wp_query->next_post(); else : the_post(); ?>
  4.         <div class="post-item">
  5.             <a href="<?php the_permalink(); ?>"><img class="post-image" src="<?php echo bloginfo('template_directory') . '/img/postImages/alba1.jpg'; ?>" alt="" title=""/></a>
  6.             <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  7.             <?php the_content(); ?>                                                
  8.         </div>
  9.     <?php endif; endwhile; ?>
  10.     </div>
  11. <?php else: ?>
  12.     <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>                                 
  13. <?php endif; ?>
  14.                
  15. <?php $i = 0; rewind_posts(); ?>
  16.                
  17. <?php if (have_posts()) : ?>
  18.     <div class="column">
  19.     <?php while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?>
  20.         <div class="post-item">
  21.             <a href="<?php the_permalink(); ?>"><img class="post-image" src="<?php echo bloginfo('template_directory') . '/img/postImages/alba1.jpg'; ?>" alt="" title=""/></a>
  22.             <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  23.             <?php the_content(); ?>                    
  24.         </div>
  25.     <?php endif; endwhile; ?>
  26.     </div>
  27. <?php else: ?>
  28. <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>                     
  29. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement