woocommerce/templates/content-product.php

70 lines
1.7 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
2013-01-04 15:30:31 +00:00
// Ensure visibility
2013-10-16 09:52:35 +00:00
if ( ! $product || ! $product->is_visible() )
2012-08-14 18:05:45 +00:00
return;
2012-07-11 10:23:31 +00:00
2012-07-11 12:50:24 +00:00
// Increase loop count
$woocommerce_loop['loop']++;
2013-01-04 15:49:36 +00:00
// Extra post classes
$classes = array();
2013-01-04 15:49:36 +00:00
if ( 0 == ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] || 1 == $woocommerce_loop['columns'] )
$classes[] = 'first';
if ( 0 == $woocommerce_loop['loop'] % $woocommerce_loop['columns'] )
$classes[] = 'last';
2012-07-11 12:50:24 +00:00
?>
2013-01-04 15:49:36 +00:00
<li <?php post_class( $classes ); ?>>
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
*
* @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
2013-08-25 19:04:16 +00:00
*
* @hooked woocommerce_template_loop_rating - 5
* @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>