How can I display a list of categories of my posts

You need to use wp_list_categories() (Codex ref), using the child_of argument. Assuming you know the ID of the “Podcasts” category, e.g. 123: wp_list_categories( array( ‘child_of’ => ‘123’ ) ); If you need to find the category ID, use get_category_by_slug (Codex ref): $cat = get_category_by_slug( ‘podcasts’ ); $catid = $cat->ID; wp_list_categories( array( ‘child_of’ => $catid ) … Read more