Created
September 28, 2015 22:02
-
-
Save mindctrl/91ae3ea844e930d4a3cd to your computer and use it in GitHub Desktop.
Easy Digital Downloads - Sort category archives randomly
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 | |
| /* | |
| Plugin Name: Easy Digital Downloads - Sort category archives by random order | |
| */ | |
| function jp_sort_edd_category_archives( $query ) { | |
| if ( is_tax( 'download_category' ) && $query->is_main_query() ) { | |
| $query->set( 'orderby', 'rand' ); | |
| } | |
| } | |
| add_action( 'pre_get_posts', 'jp_sort_edd_category_archives' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment