Get the FULL version

WordPress: get posts within the loop

Get Odd/Even Posts

It is similar to the last page, however the if statement is going to be different. I will explain from the start, so there’s no need to go back to the previous page.

Create a variable that will count posts just before the WordPress Loop:

  1. //add this line  
  2. <?php $postCounter = 0; ?>  
  3. //WordPress Loop starts here  
  4. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>  

And increment this variable inside the loop:

  1. //insert ++$postCounter; after the_post();  
  2. <?php if (have_posts()) : while (have_posts()) : the_post(); ++$postCounter; ?>  

Then, add the following if statement just before the end of the loop whenever you want the even posts:

  1. //add this if statement  
  2. <?php if($postCounter % 2 == 0) //get even posts  
  3. {  
  4.     //Your code here, probably an advertisement.  
  5. } ?>  
  6. //WordPress Loop ends here  
  7. <?php endwhile; ?>  

Case you are looking for the odd posts, use this if statement instead:

  1. //add this if statement  
  2. <?php if($postCounter % 2 != 0) //get odd posts  
  3. {  
  4.     //Your code here, probably an advertisement.  
  5. } ?>  
  6. //WordPress Loop ends here  
  7. <?php endwhile; ?>  

At the next page, how to get posts at a desired interval (Get every *insert number* posts).

Pages: 1 2 3 4 5

Be the first to leave a comment!

Leave a Comment

Post Comments RSS