我将类别设置为按字母顺序排序:
<?php if (is_category()) {
$posts = query_posts($query_string . \'&orderby=title&order=asc\');
}
?>
我想排除一个类别,以便它按日期排序。我试过这个,但它让所有的猫都一无所获:
<?php if (is_category()) {
$posts = query_posts($query_string . \'&orderby=title&order=asc&exclude=15\');
}
?>
有什么想法吗?