Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想只显示属于 33、39 类的成员并且是后期运动员的帖子。我当前的代码显示属于 33 和 39 类的帖子和运动员:
<?php query_posts( 'cat=33&cat=39&post_type=athletes'); ?>
我需要做哪些调整?
您可以使用选项数组而不是查询字符串,在其中您可以使用category__and设置来执行您想要的操作:
category__and
<?php query_posts(array( 'category__and' => array(33,39), 'post_type' => 'athletes' )); ?>