Skip to content

Instantly share code, notes, and snippets.

@manchumahara
Created January 11, 2016 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manchumahara/dd1916e4c674d7c23286 to your computer and use it in GitHub Desktop.
Save manchumahara/dd1916e4c674d7c23286 to your computer and use it in GitHub Desktop.
CBX Rating & Review - order by avg rating using meta key for any form id http://wpboxr.com/cbx-multi-criteria-rating-review-system-documentation
$form_id = 5; //suppose we want to sort woocommerce products with avg rating using custom query
$args = array(
'post_type' => 'product',
'orderby' => 'meta_value_num',
'meta_key' => 'cbrating'.$form_id
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment