1

我想只显示属于 33、39 类的成员并且是后期运动员的帖子。我当前的代码显示属于 33 和 39 类的帖子和运动员:

<?php query_posts( 'cat=33&cat=39&post_type=athletes'); ?>

我需要做哪些调整?

4

1 回答 1

2

您可以使用选项数组而不是查询字符串,在其中您可以使用category__and设置来执行您想要的操作:

<?php
query_posts(array(
    'category__and'  => array(33,39),
    'post_type'      => 'athletes'
));
?>
于 2012-06-17T22:09:26.710 回答