在WordPress循环中显示某个类别的帖子,可以通过以下步骤实现:
archive.php
或category.php
,这两个文件通常用于显示类别页面。<?php
$category_id = 1; // 替换为要显示的类别的ID或别名
$args = array(
'cat' => $category_id,
);
query_posts($args);
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class="entry-content">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>
完成上述步骤后,保存文件并刷新WordPress页面,就能够在循环中只显示指定类别的帖子了。
腾讯云相关产品推荐:
更多腾讯云产品信息和介绍,请访问腾讯云官方网站:腾讯云。
领取专属 10元无门槛券
手把手带您无忧上云