From a4d8349026ef1ebdbce439fdaa25b48ff6229845 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Tue, 22 Dec 2015 13:58:28 -0500 Subject: [PATCH] added category id links to breadcrumbs --- views/product_detail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/product_detail.php b/views/product_detail.php index 7d8f2af..6091c69 100644 --- a/views/product_detail.php +++ b/views/product_detail.php @@ -2,12 +2,12 @@ $args = array( 'orderby' => 'parent', 'hierarchical'=> true, - ); $relatives = wp_get_post_terms($product->ID, 'michsci_category', $args); ?> " . $relative->name . "" . " > "; + + echo '' . $relative->name . "" . " > "; } ?> post_title; ?>

post_title; ?>

-- 2.17.1