2012-04-10 39 views
0

您好,我需要在wordpress中按標題排序列表的排序列表,無論類別名稱,下面是我的初始代碼升序,但仍然考慮排序的類別。我需要一個排序代碼,只會按升序對標題進行排序,並忽略對其類別進行排序。排序方式發佈標題,無論類別在wordpress

 $args=array(

     'showposts'=> 7, 

     'category__not_in' => array(20,8,11,3,4,5,6,1), //excluded category IDs 

     'order' => 'ASC' 

    ); 

    query_posts($args); 

回答

1

嘗試增加

'orderby' => 'title' 

$argsorder只指定排序順序。它不會告訴WordPress要排序的字段。有關更多詳細信息,請參見the Codex