带有多个AND的IN运算符的Wordpress查询在where子句中

时间:2016-10-19 10:44:00

标签: php wordpress

我需要在IN运算符中使用WordPress查询,并在where子句中使用多个AND。

cell1.style.display = "none";

1 个答案:

答案 0 :(得分:1)

尝试使用此代码,确保在传递给prepare语句时,数组中的所有占位符都是正确的:

 $how_many = count($usersRegisteFrOtherEvents);
 $placeholders = array_fill(0, $how_many, '%d');
 $format = implode(', ', $placeholders);