Displaying custom taxonomies below post
-
Hi,
I added Types plugin and created a custom taxonomy called ‘Actor’ to tag posts video posts with. Under the post (singlepost.php) there is code to show the category, tags, and now my new custom taxonomy ‘actor’. However, the actor part is only returning the normal tags. What is the code to add to return the new custom taxonomies? As you can see in the current code… there is still the same ‘the_tags’ part, which is fine for the other tags, but not the new custom ones.
Categories: <?php the_category(‘, ‘); ?>
<?php endif; ?>
Tags: <?php the_tags(‘ ‘,’, ‘,’ ‘); ?>
Actor: <?php the_tags(‘ ‘); ?>
- The topic ‘Displaying custom taxonomies below post’ is closed to new replies.