Skip to content

Instantly share code, notes, and snippets.

@roykho
Created July 30, 2014 13:04
Show Gist options
  • Save roykho/39c1d1a9ee992bef3629 to your computer and use it in GitHub Desktop.
Save roykho/39c1d1a9ee992bef3629 to your computer and use it in GitHub Desktop.
WooCommerce: How to reverse product review comments order
add_filter( 'woocommerce_product_review_list_args', 'wc_reverse_product_reviews' );
function wc_reverse_product_reviews( $args ) {
$args['reverse_top_level'] = true;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment