Hi.
I have created a custom taxonomy called forum_category and I created some entries in there by using wp-admin.
When executing this code:
$terms = get_terms('forum_category');
print_r($terms);
it prints an empty array when I expected to get all entries from this taxonomy. Can someone tell me what I'm doing wrong ?
Thanks.