woocommerce/templates/single-product/meta.php

18 lines
594 B
PHP
Raw Normal View History

2011-12-11 01:08:33 +00:00
<?php
/**
* Single Product Meta
*/
global $post, $product;
2011-12-11 01:08:33 +00:00
?>
<div class="product_meta">
2011-12-19 19:10:59 +00:00
<?php if (($product->is_type('simple') || $product->is_type('variable')) && get_option('woocommerce_enable_sku')=='yes') : ?>
<span itemprop="productID" class="sku"><?php _e('SKU:', 'woothemes'); ?> <?php echo $product->sku; ?>.</span>
2011-12-11 01:08:33 +00:00
<?php endif; ?>
<?php echo $product->get_categories( ', ', ' <span class="posted_in">'.__('Category:', 'woothemes').' ', '.</span>'); ?>
2011-12-11 01:08:33 +00:00
<?php echo $product->get_tags( ', ', ' <span class="tagged_as">'.__('Tags:', 'woothemes').' ', '.</span>'); ?>
2011-12-11 01:08:33 +00:00
</div>