Get link from Child Posts and list the Child Categories in Parent Post?
-
So I am trying to make a fan tv site like iMDB. This is my first time working with custom post type, so I am on ground zero.. Maybe some of you can help me out ;)!
My problem is, I have no clue on how to get the child posts categories listed (in this example Category Episodes are the category for every child post).
All I know is how to fetch the
<?php $episodes = types_child_posts('episodes'); ?>
and then loop them
<?php foreach ($episodes as $episode) { ?>
For some reason I can’t get get_page_link to work, nor know what code to fetch the categories inside the loop?
Here is my small code so far:
https://pastebin.com/k1XZnR4X
- The topic ‘Get link from Child Posts and list the Child Categories in Parent Post?’ is closed to new replies.