Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将我的主页循环过滤为类别 ID 为 34 的 1 个帖子。我有多个自定义帖子类型,并分配了自定义分类 ID 34。我不知道为什么这不起作用:
<?php query_posts('showposts=1&cat=34'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php query_posts(array('post_type' => 'customposttypename','category' => 'catslugname', 'posts_per_page' => 1 )); ?>
它不是tag
tag
<?php query_posts('showposts=1&cat=34'); ?>