Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created February 9, 2021 19:10
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 mgibbs189/2c174ef8219f83d16320aed7db656bac to your computer and use it in GitHub Desktop.
Save mgibbs189/2c174ef8219f83d16320aed7db656bac to your computer and use it in GitHub Desktop.
FacetWP - sort resource archive items by title
<?php
// Add to your (child) theme's functions.php
add_action( 'pre_get_posts', function( $query ) {
if ( $query->is_post_type_archive( 'resource' ) ) {
$query->set( 'orderby', 'title' );
$query->set( 'order', 'ASC' );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment