在WordPress中修复“自定义贴子按类别显示”的问题,可以按照以下步骤进行:
<?php
/*
Template Name: Custom Post Category
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
$args = array(
'post_type' => 'custom_post_type', // 替换为你的自定义贴子类型
'category_name' => 'category_slug', // 替换为你的类别别名
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) :
$query->the_post();
// 在这里显示自定义贴子的内容
the_title();
the_content();
endwhile;
else :
// 如果没有匹配的贴子
echo 'No posts found.';
endif;
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>
请确保将代码中的custom_post_type
替换为你的自定义贴子类型,将category_slug
替换为你的类别别名。
通过以上步骤,你就可以在WordPress中修复“自定义贴子按类别显示”的问题了。
腾讯云相关产品推荐:
请注意,以上推荐的腾讯云产品仅供参考,具体选择应根据实际需求进行评估和决策。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云