0

我一直在到处寻找,我正在尝试查询以查找此帖子类型中具有特定分类值集的自定义帖子。

  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");
4

1 回答 1

0

我今天早上醒来,又试了一次。有效,为什么?... 没关系。也许工作到深夜。

$recent = new WP_Query("age_group=test&post_type=toy");
于 2010-09-25T03:43:54.063 回答