<h2><?php echo $product->post_title; ?></h2>
<?php
setup_postdata( $product );
- the_content();
+ the_content(); ?>
+<?php
// $key_value = get_post_custom_values('miproduct_features', $product->ID);
// foreach($key_value as $key=>$value){
// echo $value;
-// }
+// } ?>
+ <p id="tagList">
+<?php
+echo '<strong> Tags: </strong>';
+$args = array(
+ "hide_empty"=>false
+);
+$tags = wp_get_post_terms($product->ID,'michsci_tag', $args);
+foreach ($tags as $tag){ ?>
+
+<?php echo $tag->name . " "; ?>
+<?php }?>
+</p>
$key_value = get_post_custom_values('miproduct_related_products', $product->ID);
foreach($key_value as $key=>$value){
echo '<strong>Related Products: </strong>' . '<a href="#">' . $value . '</a>';