Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created May 22, 2020 23:49
Show Gist options
  • Save jchristopher/e49c9c27400f8631c5703be2b8240aaf to your computer and use it in GitHub Desktop.
Save jchristopher/e49c9c27400f8631c5703be2b8240aaf to your computer and use it in GitHub Desktop.
Sort SearchWP WP_Post Results alphabetically by Title in ascending order
<?php
// Sort SearchWP WP_Post Results alphabetically by Title in ascending order.
add_filter( 'searchwp\query\mods', function( $mods ) {
$mod = new \SearchWP\Mod( \SearchWP\Utils::get_post_type_source_name( 'post' ) );
$mod->order_by( function( $mod ) {
return $mod->get_local_table_alias() . '.post_title';
}, 'ASC', 9 );
$mods[] = $mod;
return $mods;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment