によると: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
デフォルトの順序はDESC、デフォルトのorderbyは日付です。
カスタムプラグインでは、プラグインは次のpre_get_postsフィルタを適用しています。
function custom_search_filter($query) {
//echo '<pre>'; var_dump($_GET); echo '</pre>'; die;
//echo '<pre>'; var_dump($query); echo '</pre>'; die;
if ($query->is_search) {
/* -------------------------------------------------- */
$query->set('orderby', 'date');
if ( isset($_GET['order']) ) {
if ( $_GET['order'] == 'DESC' ) {
$query->set('order', 'DESC');
//echo '<pre>'; var_dump($_GET); echo '</pre>'; die;
} else {
$query->set('order', 'ASC');
//echo '<pre>'; var_dump($_GET); echo '</pre>'; die;
}
}
/* -------------------------------------------------- */
}
return $query;
}
add_filter('pre_get_posts', 'custom_search_filter', 999);
GET URLは順序をASCに設定します。
http://mysite.lh/?post_type%5B%5D =リソース&custom-search-my-term =追加+新規+用語&s =カスタム検索&注文= ASC
そして私が得たクエリをデバッグする:
SELECT SQL_CALC_FOUND_ROWS wp_posts。* wp_postsの先頭WHERE 1 = 1 AND wp_posts.post_type = 'resources' AND(wp_posts.post_status = 'パブリッシュ')ORDER BY wp_posts.menu_order、wp_posts.post.date
上記のSQLでは、次のことに気付くはずです。ORDER BY ... DESC
実際に$ _GET ['order'] == 'ASC'の場合、順序がDESCからASCに変更されないのはそのためです。
前もって感謝します。
よし、分った:
function custom_search_orderby($orderby) {
global $wpdb;
if ( is_search() ) {
if ( isset($_GET['order']) ) {
if ( $_GET['order'] == 'DESC' ) {
$orderby = $wpdb->prefix . "posts.post_date DESC";
} else {
$orderby = $wpdb->prefix . "posts.post_date ASC";
}
}
}
return $orderby;
}
add_filter('posts_orderby', 'custom_search_orderby', 999);