woocommerce/templates/content-product.php

67 lines
1.6 KiB
PHP
Raw Normal View History

2012-07-11 10:23:31 +00:00
<?php
/**
2012-07-11 12:50:24 +00:00
* The template for displaying product content within loops.
2012-07-11 10:23:31 +00:00
*
* Override this template by copying it to yourtheme/woocommerce/content-product.php
*
2012-08-14 18:05:45 +00:00
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
2012-07-11 10:23:31 +00:00
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2012-07-11 12:50:24 +00:00
global $product, $woocommerce_loop;
2012-07-11 10:23:31 +00:00
2012-07-11 12:50:24 +00:00
// Store loop count we're currently on
2012-08-14 18:05:45 +00:00
if ( empty( $woocommerce_loop['loop'] ) )
2012-07-11 12:50:24 +00:00
$woocommerce_loop['loop'] = 0;
2012-07-11 10:23:31 +00:00
2012-07-11 12:50:24 +00:00
// Store column count for displaying the grid
2012-08-14 18:05:45 +00:00
if ( empty( $woocommerce_loop['columns'] ) )
2012-07-11 12:50:24 +00:00
$woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 );
2012-07-11 10:23:31 +00:00
2012-07-11 12:50:24 +00:00
// Ensure visibilty
2012-08-14 18:05:45 +00:00
if ( ! $product->is_visible() )
return;
2012-07-11 10:23:31 +00:00
2012-07-11 12:50:24 +00:00
// Increase loop count
$woocommerce_loop['loop']++;
?>
<li class="product<?php
if ( ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] == 0 || $woocommerce_loop['columns'] == 1)
echo ' first';
2012-08-14 18:05:45 +00:00
if ( $woocommerce_loop['loop'] % $woocommerce_loop['columns'] == 0 )
echo ' last';
2012-07-11 12:50:24 +00:00
?>">
<?php do_action( 'woocommerce_before_shop_loop_item' ); ?>
2012-08-14 18:05:45 +00:00
2012-07-11 12:50:24 +00:00
<a href="<?php the_permalink(); ?>">
2012-08-14 18:05:45 +00:00
2012-07-11 12:50:24 +00:00
<?php
2012-08-14 18:05:45 +00:00
/**
2012-07-11 12:50:24 +00:00
* woocommerce_before_shop_loop_item_title hook
2012-07-11 10:23:31 +00:00
*
2012-07-11 12:50:24 +00:00
* @hooked woocommerce_show_product_loop_sale_flash - 10
* @hooked woocommerce_template_loop_product_thumbnail - 10
2012-08-14 18:05:45 +00:00
*/
do_action( 'woocommerce_before_shop_loop_item_title' );
2012-07-11 10:23:31 +00:00
?>
2012-08-14 18:05:45 +00:00
2012-07-11 12:50:24 +00:00
<h3><?php the_title(); ?></h3>
2012-07-11 10:23:31 +00:00
2012-07-11 12:50:24 +00:00
<?php
2012-08-14 18:05:45 +00:00
/**
2012-07-11 12:50:24 +00:00
* woocommerce_after_shop_loop_item_title hook
*
* @hooked woocommerce_template_loop_price - 10
2012-08-14 18:05:45 +00:00
*/
do_action( 'woocommerce_after_shop_loop_item_title' );
2012-07-11 12:50:24 +00:00
?>
2012-08-14 18:05:45 +00:00
2012-07-11 12:50:24 +00:00
</a>
2012-08-14 18:05:45 +00:00
2012-07-11 12:50:24 +00:00
<?php do_action( 'woocommerce_after_shop_loop_item' ); ?>
2012-08-14 18:05:45 +00:00
2012-07-11 12:50:24 +00:00
</li>