Skip to content

Instantly share code, notes, and snippets.

@rubelmiah
Last active October 15, 2016 15:08
Show Gist options
  • Save rubelmiah/92c68849ac271bb5491168633bc9ef4f to your computer and use it in GitHub Desktop.
Save rubelmiah/92c68849ac271bb5491168633bc9ef4f to your computer and use it in GitHub Desktop.
<?php $popular_items = new WP_Query (array(
'post_type' => 'download',
'orderby' => 'meta_value_num',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => '_edd_download_sales',
'compare' => '>',
'value' => 0,
'order' => 'DESC',
),
),
'posts_per_page' => 3
)); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment