Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bulbul84/3af61b1aeb63f8c1726e41416fc09be1 to your computer and use it in GitHub Desktop.
Save bulbul84/3af61b1aeb63f8c1726e41416fc09be1 to your computer and use it in GitHub Desktop.
<?php
//loop er bahire
$a = 0;
$active_class = '';
loop er bitore
while (condition goes here):
if(0 == $a){
$active_class = 'active';
}
<div class='some class <?php echo esc_attr($active_class)?>'>
markup goes here
</div>
$a++;
endwhile;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment