不同輸出的東西我運行一個插件叫做類別帖子的Widget爲WordPress:http://wordpress.org/extend/plugins/category-posts/While循環:每月的第二個結果
它使用while循環在某個類別,顯示所有職位的名稱。我想要得到它,以便在每個第二個輸出中都有一個不同的類附加到li標記。
這裏是代碼插件塊:
// Post list
echo "<ul>\n";
while ($cat_posts->have_posts())
{
$cat_posts->the_post();
?>
<li class="cat-post-item">
<a class="post-title" href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php
if (
function_exists('the_post_thumbnail') &&
current_theme_supports("post-thumbnails") &&
$instance["thumb"] &&
has_post_thumbnail()
) :
?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail('cat_post_thumb_size'.$this->id); ?>
</a>
<?php endif; ?>
<?php if ($instance['date']) : ?>
<p class="post-date"><?php the_time("j M Y"); ?></p>
<?php endif; ?>
<?php if ($instance['excerpt']) : ?>
<?php the_excerpt(); ?>
<?php endif; ?>
<?php if ($instance['comment_num']) : ?>
<p class="comment-num">(<?php comments_number(); ?>)</p>
<?php endif; ?>
</li>
<?php
}
echo "</ul>\n";
我只是想獲得它等各個第二個在輸出列表中,李有不同的類,所以貓後item-alt例如。
感謝,
韋德
非常感謝。幫助噸! – 2010-05-11 02:23:49