Initiate a variable and check inside your loop. A simple way:
$i=0;
while(have_posts() == true)
{
++$i;
if($i==1) //first post
continue;
// Rest of the code
}
Initiate a variable and check inside your loop. A simple way:
$i=0;
while(have_posts() == true)
{
++$i;
if($i==1) //first post
continue;
// Rest of the code
}