WordPress 3.7 では検索結果が関連度順に表示されるようになった。
検索結果の表示順を変更するには posts_search_orderby フィルタを使えばいい(らしい)。
テーマの functions.php(Themify を使用しているなら custom-functions.php)に以下を追加。
1 2 3 4 |
add_filter('posts_search_orderby', custom_posts_search_orderby); function custom_posts_search_orderby() { return ' post_date desc '; } |