如何在一个页面中只显示自定义帖子类型的分类? 时间:2013-07-18 作者:Nandha 我已经创建了作为自定义帖子的recipe和作为分类法的types。在该分类法中,我创建了蔬菜和水果作为字段,每个字段有5篇帖子,但我需要在页面中只显示蔬菜和水果?下面的查询是我当前使用的。它显示所有帖子。<?php $mypost = array( \'post_type\' => \'recipe\', ); $loop = new WP_Query( array( \'post_type\' => \'recipe\', \'posts_per_page\' => 9 ) ); ?> 有人能帮我吗? 1 个回复 SO网友:Fränk 您可以使用taxonomy query, 像这样:$args = array( \'post_type\' => \'recipe\', \'tax_query\' => array( array( \'taxonomy\' => \'types\', \'field\' => \'slug\', \'terms\' => array( \'vegetables\', \'fruit\' ) ) ) ); $query = new WP_Query( $args ); 结束 文章导航