标签: php wordpress
我想测试后父母的多个id。目前我正在测试ID为23的post parent,但我也想测试父ID为1389.我该怎么做?
<?php if($post->post_parent!==23){ ?>scale-with-grid<? } ?>
答案 0 :(得分:3)
您可以使用in_array功能:
in_array
if(!in_array($post->post_parent, array(23, 1389)) ...