这来自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;
答案 0 :(得分:0)
如果您只想显示类别ID为20的条目,请将所有代码替换为:
query_posts('paged='.$paged.'&cat=20');