我正试图让我的计数器,嗯,计数。我正在尝试使用以下内容在显示的每一秒帖子中添加一个类名(偶数):
<?php
global $paged;
global $post;
$do_not_duplicate = array();
$categories = get_the_category();
$category = $categories[0];
$cat_ID = $category->cat_ID;
$myposts = get_posts('category='.$cat_ID.'&paged='.$paged);
$do_not_duplicate[] = $post->ID;
$c = 0;
$c++;
if( $c == 2) {
$style = 'even animated fadeIn';
$c = 0;
}
else $style='animated fadeIn';
?>
<?php foreach($myposts as $post) :?>
// Posts outputted here
<?php endforeach; ?>
我只是没有得到even
输出的类名。唯一输出的类名是animated
和FadeIn
类(来自我的 if 语句的 else 部分)现在添加到每个帖子中