woocommerce/templates/single-product.php

47 lines
1.0 KiB
PHP
Raw Normal View History

2012-07-11 10:23:31 +00:00
<?php
/**
* The Template for displaying all single products.
*
* Override this template by copying it to yourtheme/woocommerce/single-product.php
*
* @package WooCommerce
* @since WooCommerce 1.0
*/
2011-08-09 15:16:18 +00:00
2012-07-11 10:23:31 +00:00
get_header('shop'); ?>
2011-08-09 15:16:18 +00:00
2012-07-11 10:23:31 +00:00
<?php
/**
* woocommerce_before_main_content hook
*
* @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
* @hooked woocommerce_breadcrumb - 20
*/
do_action('woocommerce_before_main_content');
?>
2011-08-09 15:16:18 +00:00
2012-07-11 10:23:31 +00:00
<?php while ( have_posts() ) : the_post(); ?>
2011-08-09 15:16:18 +00:00
2012-07-11 10:23:31 +00:00
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
<?php endwhile; // end of the loop. ?>
<?php
/**
* woocommerce_after_main_content hook
*
* @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
*/
do_action('woocommerce_after_main_content');
?>
<?php
/**
* woocommerce_sidebar hook
*
* @hooked woocommerce_get_sidebar - 10
*/
do_action('woocommerce_sidebar');
?>
2011-08-09 15:16:18 +00:00
<?php get_footer('shop'); ?>