Created
February 9, 2021 19:10
-
-
Save mgibbs189/2c174ef8219f83d16320aed7db656bac to your computer and use it in GitHub Desktop.
FacetWP - sort resource archive items by title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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