Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Floats Automatic in Single Post Template WordPress Re: Floats Automatic in Single Post Template WordPress

#98660
Krist
Member

Basic code [PHP]


// Looping
$i = 1;
foreach($posts as $post){
$align = $post % 2 == 0 ? 'left' : 'right';
echo '';
echo '

Cotent here

';
$i++;
}