Here an example my wordpress post. I want to add some class to the last of <li>
something like <li class='lastli'>
<ul class="tabs">
<?php
global $post;
$myposts = get_posts('numberposts=3');
foreach($myposts as $post) :
setup_postdata($post);
?>
<li><a href="#"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
The results I wanted to be like :
<ul>
<li>Title 1</li>
<li>Title 1</li>
<li class='lastli'>Title 1</li>
<ul>
Any last of unordered lists will be <li class='lastli'>
. Let me know how to do that?