在WordPress中显示当前单个帖子类别中自定义帖子类型的所有帖子,可以通过以下步骤实现:
while(have_posts())
开始的部分。$categories = get_the_category();
$category_slug = $categories[0]->slug;
$args = array(
'post_type' => 'your_custom_post_type',
'category_name' => $category_slug,
'posts_per_page' => -1
);
$custom_query = new WP_Query($args);
if ($custom_query->have_posts()) {
while ($custom_query->have_posts()) {
$custom_query->the_post();
// 显示自定义帖子类型的帖子内容
}
wp_reset_postdata();
}
通过以上步骤,你可以在WordPress中显示当前单个帖子类别中自定义帖子类型的所有帖子。请注意,上述代码中的"your_custom_post_type"需要替换为你自定义的帖子类型的名称。
推荐的腾讯云相关产品:腾讯云服务器(https://cloud.tencent.com/product/cvm)和腾讯云数据库(https://cloud.tencent.com/product/cdb)可以为你的WordPress网站提供稳定的服务器和数据库支持。
领取专属 10元无门槛券
手把手带您无忧上云