Woocommerce get rating
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
<?php if ($average = $product->get_average_rating()) : ?>
<?php echo '<div class="star-rating" title="'.sprintf(_( 'Rated %s out of 5', 'woocommerce' ), $average).'"><span style="width:'.( ( $average / 5 ) * 100 ) . '%"><strong itemprop="ratingValue" class="rating">'.$average.'</strong> '._( 'out of 5', 'woocommerce' ).'</span></div>'; ?>
<?php endif; ?>