• HI,
    i have loop with 5 posts
    how to custom the first two or three posts in loop to be shown in different style than other posts in the same loop
    EG;
    I want the first two posts { title bold with thumbnails and date }
    the three other posts { without thumbnails and red title }

    excuse me 4 my poor language ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • Use a counter.

    $i = 1;
    if(have_posts()) {
      while(have_posts()) {
        the_post();
        if($i <= 2) {
          // do stuff for your first two posts here
        } else {
          // do stuff for last three posts
        }
        $i++;
      }
    }

    Thread Starter BOLLIKA

    (@bollika)

    but i can’t write the_title (twice)
    the first :in the first stuff
    and the second in the last three posts

    i want to write the title twice but with different style ??
    can any one attach any free theme include this ?? to learn by myself

    [Bump deleted per forum policy – please do not do that here]

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to custom the first two posts in loop’ is closed to new replies.