如何从get_query_var获取类别ID

时间:2012-10-23 20:09:08

标签: wordpress variables loops

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

例如,我有以下网址:

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

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

1 个答案:

答案 0 :(得分:0)

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

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

    endif;

    get_sidebar();
    get_footer(); 
?>

http://codex.wordpress.org/The_Loop_in_Action