Skip to content

Instantly share code, notes, and snippets.

@sethrubenstein
Created August 27, 2014 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sethrubenstein/24693c3f0ac67ef3d409 to your computer and use it in GitHub Desktop.
Save sethrubenstein/24693c3f0ac67ef3d409 to your computer and use it in GitHub Desktop.
Make SearchWP return results by date rather than relevance. Place this in your theme's functions.php file.
<?php
// This will make the search return results ordered by date rather than relevance.
add_filter( 'searchwp_return_orderby_date', '__return_true' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment