removing print tests
authorAnthony Talarico <talarico@gaslightmedia.com>
Wed, 20 Jan 2016 18:18:21 +0000 (13:18 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Wed, 20 Jan 2016 18:18:21 +0000 (13:18 -0500)
parts/sidebar-l.php

index abdb8e7..51f91c2 100644 (file)
                   'tax_query' => array(
                       array(
                           'taxonomy' => 'michsci_category',
-                          'field' => 'id',
+                          'field' => 'term_id',
                           'terms' => $cat_id)
                   ))
             );
 
               foreach($myPost as $myPosts){
-                  echo $myPosts->ID;
                   $term_list = wp_get_post_terms($myPosts->ID, "michsci_tag");
                   foreach($term_list as $myTerms){
                       echo '<label class="checkboxLabel"><input class="tagOptions" type="checkbox" name="' . $myTerms->name . '" value="' . $myTerms->slug . '"' . '>' . " " . $myTerms->name . '</label>' ."<br>";