我正在尝试将我的主页循环过滤到类别ID为34的1个帖子。我有多个自定义帖子类型,并为其分配了自定义分类ID 34。我无法弄清楚为什么这不起作用:
<?php query_posts('showposts=1&cat=34'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
答案 0 :(得分:0)
不是tag
<?php query_posts('showposts=1&cat=34'); ?>
答案 1 :(得分:0)
<?php query_posts(array('post_type' => 'customposttypename','category' => 'catslugname', 'posts_per_page' => 1 )); ?>