From a2149e60e5172c6604e9f8f83169520694fa85eb Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Fri, 18 Dec 2015 16:34:25 -0500 Subject: [PATCH] added ids to form and select box --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 8f71cac..3dea9d0 100644 --- a/index.php +++ b/index.php @@ -171,7 +171,7 @@ function michsci_shortcode($atts) extract( shortcode_atts( array( 'limit' => '10' ), $atts ) ); ob_start(); - echo '
+ echo '
'; echo michsci_get_terms_dropdown(); @@ -198,7 +198,7 @@ function michsci_get_terms_dropdown() $taxonomyName = "michsci_category"; $parent_terms = get_terms($taxonomyName, array('parent' => 0, 'orderby' => 'name', 'hide_empty' => false)); - $output =""; // get parent categories foreach ($parent_terms as $parent){ -- 2.17.1