Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rahilwazir/4288b9005685773bec84028070af3f52 to your computer and use it in GitHub Desktop.
Save rahilwazir/4288b9005685773bec84028070af3f52 to your computer and use it in GitHub Desktop.
Sort the downloads archive in Easy Digital Downloads by number of sales
<?php
/*
Plugin Name: Easy Digital Downloads - Sort archive by number of sales
*/
function jp_sort_downloads_archive( $query ) {
if ( is_post_type_archive( 'download' ) && $query->is_main_query() ) {
$query->set( 'meta_key', '_edd_download_sales' );
$query->set( 'orderby', 'meta_value_num' );
$query->set( 'order', 'DESC' );
}
}
add_action( 'pre_get_posts', 'jp_sort_downloads_archive' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment