Skip to content

Instantly share code, notes, and snippets.

@Sharifur
Created October 15, 2018 09:52
Show Gist options
  • Save Sharifur/f1de7eed0a63739f91e009a1e2cf2c5c to your computer and use it in GitHub Desktop.
Save Sharifur/f1de7eed0a63739f91e009a1e2cf2c5c 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