0

如何从查询中获取类别 ID?

例如我有以下网址:

http://localhost/website/[some-custom-tax]/[category]

基本上,我想列出categoryarchive.php 中给定的所有帖子

4

1 回答 1

0

确保您没有更改查询。您可以使用 wordpress 的默认索引页面模板再次对其进行测试,您应该只获得您类别的帖子。

    while (have_posts()) :
       the_post();
       the_content();
    endwhile;

    endif;

    get_sidebar();
    get_footer(); 
?>

http://codex.wordpress.org/The_Loop_in_Action

于 2012-10-24T04:31:05.457 回答