50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying product content within loops
|
|
*
|
|
* This template can be overridden by copying it to yourtheme/woocommerce/content-product.php.
|
|
*
|
|
* HOWEVER, on occasion WooCommerce will need to update template files and you
|
|
* (the theme developer) will need to copy the new files to your theme to
|
|
* maintain compatibility. We try to do this as little as possible, but it does
|
|
* happen. When this occurs the version of the template file will be bumped and
|
|
* the readme will list any important changes.
|
|
*
|
|
* @see https://woocommerce.com/document/template-structure/
|
|
* @package WooCommerce\Templates
|
|
* @version 9.4.0
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
global $product;
|
|
|
|
// Ensure visibility.
|
|
if ( empty( $product ) || ! $product->is_visible() ) {
|
|
return;
|
|
}
|
|
?>
|
|
<li <?php wc_product_class( '', $product ); ?>>
|
|
<div class="product">
|
|
<div class="product-single">
|
|
<div class="product-fimg">
|
|
<?php do_action( 'woocommerce_before_shop_loop_item' ); ?>
|
|
<a href="<?php esc_url(the_permalink()); ?>"><?php the_post_thumbnail(); ?></a>
|
|
<?php
|
|
if ( $product->is_on_sale() ) : echo apply_filters( 'woocommerce_sale_flash', '<div class="sale-ribbon"><span class="tag-line">' . esc_html__( 'Sale', 'abiz' ) . '</span></div>', $post, $product ); endif;
|
|
?>
|
|
<div class="product-action">
|
|
<?php do_action( 'woocommerce_after_shop_loop_item' ); ?>
|
|
</div>
|
|
</div>
|
|
<div class="product-content-wrap">
|
|
<div class="product-content">
|
|
<h3><a href="<?php echo esc_url(get_permalink()); ?>"><?php echo esc_html(the_title()); ?></a></h3>
|
|
<div class="price">
|
|
<?php echo $product->get_price_html(); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|