我的自定义帖子类型“游戏”分类中有一组名为“游戏名”的字段- 我正在尝试使用query_posts来检索这个值......
$args = array(
'post_status'=>'publish',
'post_type'=>'games',
'gamename' => 'Space Invaders'
);
query_posts($args);
if(have_posts()) : while (have_posts()) : the_post();
the_title();
endwhile; else:
echo 'No Posts!';
endif;
wp_reset_query();
这对我不起作用,它只是返回“无帖子”
有人可以建议我做错了什么吗?