Skip to content

Instantly share code, notes, and snippets.

@lkoudal
Forked from jameskoster/functions.php
Created October 1, 2013 23:04
Show Gist options
  • Save lkoudal/6786594 to your computer and use it in GitHub Desktop.
Save lkoudal/6786594 to your computer and use it in GitHub Desktop.
add_action( 'woocommerce_after_shop_loop_item', 'wc_product_rating_overview', 15 );
if ( ! function_exists( 'wc_product_rating_overview' ) ) {
function wc_product_rating_overview() {
global $product;
echo $product->get_rating_html();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment