如何从查询中获取类别ID?
例如,我有以下网址:
http://localhost/website/[some-custom-tax]/[category]
基本上,我想在archive.php中列出给定category
的所有帖子
答案 0 :(得分:0)
确保您没有更改查询。您可以使用wordpress的默认索引页面模板再次测试它,您应该只获得您的类别的帖子。
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
get_sidebar();
get_footer();
?>