2014-04-21 53 views

回答

1

可能出現在任何鉤爲或我不知道這件事,但你可以做這樣的事情: -

<?php 
$postnum = 0; // Set counter to 0 outside the loop 

if (have_posts()) : 
    while (have_posts()) : the_post(); 

     // Do regular stuff 

     $postnum++; // Increment counter 

     if ($postnum % 5 == 0){ // If the remainder of the counter value divided by 5 equals zero 
      // Do special stuff 
     } 

    endwhile; 
endif; 
?> 

希望這會幫助你。

相關問題