From 47e7cac8576a5e2b64845cc79b78f6397286b3ab Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Mon, 28 Dec 2015 16:29:55 -0500 Subject: [PATCH] added features meta field --- views/product_detail.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/views/product_detail.php b/views/product_detail.php index d401563..6fd7941 100644 --- a/views/product_detail.php +++ b/views/product_detail.php @@ -28,7 +28,11 @@ foreach ($tags as $tag){ ?> ID); + + $key_value = get_post_custom_values('miproduct_features', $product->ID); + foreach($key_value as $key=>$value){ + echo $value; + } ?> -- 2.17.1