我一直在寻找各处,我正在尝试查询以找到具有特定分类值设置的此帖子类型的自定义帖子。
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");
答案 0 :(得分:0)
我今天早上醒来又试了一次。它有效,为什么? ... 没关系。也许工作到深夜。
$recent = new WP_Query("age_group=test&post_type=toy");