woocommerce/templates/single-product/meta.php

18 lines
564 B
PHP

<?php
/**
* Single Product Meta
*/
global $post, $_product;
?>
<div class="product_meta">
<?php if ($_product->is_type('simple') && get_option('woocommerce_enable_sku')=='yes') : ?>
<span itemprop="productID" class="sku"><?php _e('SKU:', 'woothemes'); ?> <?php echo $_product->sku; ?>.</span>
<?php endif; ?>
<?php echo $_product->get_categories( ', ', ' <span class="posted_in">'.__('Category:', 'woothemes').' ', '.</span>'); ?>
<?php echo $_product->get_tags( ', ', ' <span class="tagged_as">'.__('Tags:', 'woothemes').' ', '.</span>'); ?>
</div>