$myPost = get_posts(array(
'post_type' => 'miproduct',
- 'suppress_filters' => false,
'tax_query' => array(
array(
'taxonomy' => 'michsci_category',
);
foreach($myPost as $myPosts){
- $term_list = wp_get_post_terms($myPosts->ID, "michsci_tag", array("fields" => "all"));
+ 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>";
}