I need help with something I'm trying to do in WordPress. I've found some other posts here on the forums that I thought would do what I wanted, but come to find that either I had no idea how to implement them or it wasn't doing quite what I wanted. Any help to do this would be much appreciated.
I am creating a website that functions similarly to onthemedia.org - essentially, an online public radio program. Each program has many shows released on a periodic basis. The initial post about the show will be the entire program, and then underneath it will be excerpts from the show.
My category set up is as follows:
Program Name
> Show Date
>> Show Date Excerpts
> Show Date
>> Show Date Excerpts
So, I'm thinking that I need the category.php template to have the following:
{ Show Date loop // parent }
{ Show Date Excerpts loop // child }
I am pretty sure I could hard code the Show Date template to do all of this properly (category-4.php, category-6.php, etc), but I need something where I can just use 1 template and it automatically finds the ID's. Also note that each loop will have it's own design/css.
Maybe this is what I need?
http://wordpress.org/support/topic/252257?replies=4
http://codex.wordpress.org/Function_Reference/get_the_category
If so, how do I implement it?