测试post post parent是否等于多个ID

时间:2014-01-19 13:51:12

标签: php wordpress

我想测试后父母的多个id。目前我正在测试ID为23的post parent,但我也想测试父ID为1389.我该怎么做?

<?php if($post->post_parent!==23){ ?>scale-with-grid<? } ?>

1 个答案:

答案 0 :(得分:3)

您可以使用in_array功能:

if(!in_array($post->post_parent, array(23, 1389)) ...