逻辑运营商不能在WordPress中工作

时间:2016-04-19 16:08:19

标签: php wordpress logical-operators

我必须使用WordPress建立一个网站,我必须以水平顺序将帖子显示在一个包含4列的表中。问题很简单。当我放<?php if (have_posts()) : while(have_posts()) : $i++; if($i!=1) : $wp-query->next_post(); else : the_post() ; 时,它确实显示了我需要的帖子,但是。

($i+1) % 2 == 1. 

我有3个培训帖子。如果我改变条件

($i+1) % 2 == 1 && $i=!1

它显示第一个帖子和第三个帖子但是如果我放

($i+1) % 2 == 1 && ($i+1) %3 ==0

它仍显示第一和第三篇文章。

我想到了

($i+1) % 2 == 1 && ($i+1) %3 !=0

但它仍然显示第一个和第三个

备注:如果我放

dequeueReusableCellWithIdentifier:

它显示了第一,第二和第三个帖子。

0 个答案:

没有答案