在这个PHP中,我在哪里放置类别ID以返回类别的博客条目?

时间:2011-02-12 12:27:43

标签: php wordpress categories

这来自WordPress主题的PHP脚本。我需要返回ID为20的类别的博客条目。

<?php /* make a new query for grid items (in single page) */
    $new_query_arg = 'paged='.$paged;

    // use this code if you want filter items by category.
    $arr_catID = array();
    foreach( get_the_category() as $cat) $arr_catID[] = $cat->cat_ID;
    if ( count($arr_catID) ) $new_query_arg .= '&cat=' . join(',', $arr_catID);

    query_posts($new_query_arg);

&GT;

1 个答案:

答案 0 :(得分:0)

如果您只想显示类别ID为20的条目,请将所有代码替换为:

query_posts('paged='.$paged.'&cat=20');