Skip to content

Instantly share code, notes, and snippets.

@mindctrl
Created September 28, 2015 22:02
Show Gist options
  • Select an option

  • Save mindctrl/91ae3ea844e930d4a3cd to your computer and use it in GitHub Desktop.

Select an option

Save mindctrl/91ae3ea844e930d4a3cd to your computer and use it in GitHub Desktop.
Easy Digital Downloads - Sort category archives randomly
<?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