Can we apply hide empty to get_the_terms?

hide_empty hides terms that have no posts attached to them. You’ve got a page with no ht_kb_tags attached to it, if I’m understanding the question correctly. Since get_the_terms() returns false if there are no terms, you should be able to prevent the foreach() with an if() statement: $mget_site_url = get_site_url(); //This gets me all the … Read more