woocommerce_template_single_rating()WC 1.0

Output the product rating.

No Hooks.

Return

null. Nothing (null).

Usage

woocommerce_template_single_rating();

woocommerce_template_single_rating() code WC 8.7.0

function woocommerce_template_single_rating() {
	if ( post_type_supports( 'product', 'comments' ) ) {
		wc_get_template( 'single-product/rating.php' );
	}
}