2011-12-11 01:08:33 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Single Product Thumbnails
|
2012-08-14 18:05:45 +00:00
|
|
|
*
|
2015-10-03 07:58:08 +00:00
|
|
|
* This template can be overridden by copying it to yourtheme/woocommerce/single-product/product-thumbnails.php
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
|
|
|
* 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 http://docs.woothemes.com/document/template-structure/
|
2012-08-14 18:05:45 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2014-11-17 15:41:21 +00:00
|
|
|
* @version 2.3.0
|
2011-12-11 01:08:33 +00:00
|
|
|
*/
|
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2012-12-20 01:13:06 +00:00
|
|
|
global $post, $product, $woocommerce;
|
|
|
|
|
2013-02-11 14:17:57 +00:00
|
|
|
$attachment_ids = $product->get_gallery_attachment_ids();
|
2012-12-20 01:13:06 +00:00
|
|
|
|
2013-02-11 14:17:57 +00:00
|
|
|
if ( $attachment_ids ) {
|
2014-11-17 15:41:21 +00:00
|
|
|
$loop = 0;
|
|
|
|
$columns = apply_filters( 'woocommerce_product_thumbnails_columns', 3 );
|
2013-02-11 14:17:57 +00:00
|
|
|
?>
|
2014-11-17 15:41:21 +00:00
|
|
|
<div class="thumbnails <?php echo 'columns-' . $columns; ?>"><?php
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2013-03-10 13:07:36 +00:00
|
|
|
foreach ( $attachment_ids as $attachment_id ) {
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-04-12 16:22:56 +00:00
|
|
|
$classes = array( 'zoom' );
|
2012-08-14 18:05:45 +00:00
|
|
|
|
|
|
|
if ( $loop == 0 || $loop % $columns == 0 )
|
2012-04-12 16:22:56 +00:00
|
|
|
$classes[] = 'first';
|
2012-08-14 18:05:45 +00:00
|
|
|
|
|
|
|
if ( ( $loop + 1 ) % $columns == 0 )
|
2012-04-12 16:22:56 +00:00
|
|
|
$classes[] = 'last';
|
2011-12-11 01:08:33 +00:00
|
|
|
|
2013-03-10 13:07:36 +00:00
|
|
|
$image_link = wp_get_attachment_url( $attachment_id );
|
2012-12-20 10:53:34 +00:00
|
|
|
|
2013-03-10 13:07:36 +00:00
|
|
|
if ( ! $image_link )
|
2012-12-20 10:53:34 +00:00
|
|
|
continue;
|
|
|
|
|
2015-04-02 17:55:12 +00:00
|
|
|
$image_title = esc_attr( get_the_title( $attachment_id ) );
|
|
|
|
$image_caption = esc_attr( get_post_field( 'post_excerpt', $attachment_id ) );
|
|
|
|
|
|
|
|
$image = wp_get_attachment_image( $attachment_id, apply_filters( 'single_product_small_thumbnail_size', 'shop_thumbnail' ), 0, $attr = array(
|
|
|
|
'title' => $image_title,
|
|
|
|
'alt' => $image_title
|
|
|
|
) );
|
|
|
|
|
2013-03-10 13:07:36 +00:00
|
|
|
$image_class = esc_attr( implode( ' ', $classes ) );
|
|
|
|
|
2015-04-02 17:55:12 +00:00
|
|
|
echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', sprintf( '<a href="%s" class="%s" title="%s" data-rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_caption, $image ), $attachment_id, $post->ID, $image_class );
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-04-12 16:22:56 +00:00
|
|
|
$loop++;
|
|
|
|
}
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2013-02-11 14:17:57 +00:00
|
|
|
?></div>
|
|
|
|
<?php
|
2014-09-22 16:37:57 +00:00
|
|
|
}
|