WordPress 3.7 で検索結果の表示順を日付の降順にする 投稿日 2013/10/28 WordPress 3.7 では検索結果が関連度順に表示されるようになった。検索結果の表示順を変更するには posts_search_orderby フィルタを使えばいい(らしい)。テーマの functions.php(Themify を使用しているなら custom-functions.php)に以下を追加。functions.phpPHPadd_filter('posts_search_orderby', custom_posts_search_orderby); function custom_posts_search_orderby() { return ' post_date desc '; }1234add_filter('posts_search_orderby', custom_posts_search_orderby);function custom_posts_search_orderby() { return ' post_date desc ';} XBlueskyFacebookBookmarkPocketLINEその他メールアドレス印刷MastodonNextdoorPinterestTumblrRedditLinkedInTelegramWhatsApp