0
這裏是我的代碼:添加額外的參數爲搜索查詢WordPress的
global $query_string;
$posts = query_posts($query_string . '&orderby=meta_value_num&order=DESC&posts_per_page=-1&meta_key=post_views_count');
while (have_posts()) : the_post();
endwhile;
這個代碼在分類歸檔頁,但在search.php中它不工作沒有搜索結果。我的代碼有什麼問題?我只是想爲搜索結果添加排序。