File "content-widget-reviews.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/templates/content-widget-reviews.php
File size: 676 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

defined('ABSPATH') || exit;
?>
<li>
	<?php 
do_action('woocommerce_widget_product_review_item_start', $args);
?>

	<?php 
?>

	<a href="<?php 
echo esc_url(get_comment_link($comment->comment_ID));
?>">
		<?php 
echo $product->get_image();
?>
		<span class="product-title"><?php 
echo wp_kses_post($product->get_name());
?></span>
	</a>

	<?php 
echo wc_get_rating_html(intval(get_comment_meta($comment->comment_ID, 'rating', true)));
?>

	<span class="reviewer">
	<?php 
echo sprintf(esc_html__('by %s', 'woocommerce'), get_comment_author($comment->comment_ID));
?>
	</span>

	<?php 
?>

	<?php 
do_action('woocommerce_widget_product_review_item_end', $args);
?>
</li>