Style first 3 posts different to other posts in WordPress? -
i've been searching around , cannot find right solution. want have first 3 posts on blog different markup rest of posts.
i'm using bootstrap want apply different divs first 3 posts rest.
any help much appreciated.
if it's within while (or foreach, have setup) statement utilize standard iterator, i.e.
$i = 1; if (have_posts()) : while (have_posts()) : the_post(); if($i < 4){ // first 3 }else{ // rest } $i++; endwhile; endif; wordpress
No comments:
Post a Comment