added category id links to breadcrumbs
authorAnthony Talarico <talarico@gaslightmedia.com>
Tue, 22 Dec 2015 18:58:28 +0000 (13:58 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Tue, 22 Dec 2015 18:58:28 +0000 (13:58 -0500)
views/product_detail.php

index 7d8f2af..6091c69 100644 (file)
@@ -2,12 +2,12 @@
 $args = array(
     'orderby' => 'parent',
     'hierarchical'=> true,
-    
 );
 $relatives = wp_get_post_terms($product->ID, 'michsci_category', $args);
 ?>
 <?php foreach($relatives as $relative){
-    echo "<a href='#'>" . $relative->name . "</a>" . " > ";
+    
+    echo '<a href="'.  '?michsci_category=' . $relative->term_id . '" >' . $relative->name . "</a>" . " > ";
 } ?>
 <?php echo $product->post_title; ?>
 <h2><?php echo $product->post_title; ?></h2>