我一直在到处寻找,我正在尝试查询以查找此帖子类型中具有特定分类值集的自定义帖子。
register_post_type('toy',$args);
register_taxonomy( 'age_group', 'toy', array( 'query_var' => true, 'hierarchical' => true, 'label' => __('Age Group') ) );
我怎样才能做到这一点?
我试过这个,但它没有用。
$recent = new WP_Query("age_group=test&post_type=toy&showposts=5");