I have a Post Category called 'Podcasts' and under it are many other sub-categories.
On a page I have titled "Podcast Categories", I would like to list all categories under the "Podcasts" category, as links to their category page. I'm fairly new to Wordpress, what would be the best way of accomplishing this?
Thank you very much!
Note: I do not want to display any kind of post content on this page, only the category name as a link. When I do google searching, I'm finding lots of info on how to post content from these categories.
UPDATE 1:
page-podcast-list.php
<div id="content">
<?php
$cat = get_category_by_slug( 'podcasts' );
$catid = $cat->ID;
?>
<?php
wp_list_categories( array(
'child_of' => $catid;
) );
?>
</div><!-- /content -->
This isn't doing what I expected. It's printing out:
Parse error: syntax error, unexpected ';', expecting ')' in /path/to/page-podcast-list.php on line 49
I'm not sure what line 49 is specifically at the moment, since I'm using the Built in WordPress Editor, without line numbers unfortunately..
I'm not familiar with php for the record, but am familiar with basic programming.
