• File: rating.php
  • Full Path: /home/chassiw/www/wp-content/themes/indutri/woocommerce/loop/rating.php
  • File size: 442 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * Loop Rating
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     3.6.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

global $product;

if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' )
	return;
?>

<?php if ( $rating_html = $product->get_rating_html() ) : ?>
	<?php echo wp_kses($rating_html, true); ?>
<?php else: ?>
	<div class="star-rating"></div>
<?php endif; ?>