2012-07-11 10:23:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-08 15:57:32 +00:00
|
|
|
* The Template for displaying products in a product category. Simply includes the archive template.
|
2012-07-11 10:23:31 +00:00
|
|
|
*
|
|
|
|
* Override this template by copying it to yourtheme/woocommerce/taxonomy-product_cat.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
|
|
|
*/
|
|
|
|
|
2014-09-22 16:31:03 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2014-09-22 16:31:03 +00:00
|
|
|
wc_get_template( 'archive-product.php' );
|