Pull in taxonomy links using get_the_terms?
You need to include your html inside the foreach, something like this: $url = site_url(); foreach ( $terms as $term ) { $linklist .= “<h3 id=’Proj_Categories’><a href=”” . $url . “/projects/” . $term->slug . “”>” . $term->name . “</a></h3>\n”; } echo “<ul>” . $linklist . “</ul>”; (I haven’t checked this code…) It looks like you … Read more