Php: Benim Sırasız listeye tek / çift döngü eklemek için nasıl

0 Cevap php

İşte bir örnek benim wordpress yazı. I the last <li> in bazı sınıf eklemek istiyorum

gibi bir şey <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>

Ben gibi olmak istedim sonuçları:

<ul>
 <li>Title 1</li>
 <li>Title 1</li>
 <li class='lastli'>Title 1</li>
<ul>

Sırasız listelerin herhangi bir son olacak <li class='lastli'>. Bana bunu nasıl bilsin?

0 Cevap