Hi
I am trying to organize the content on a website using categories in wordpress.
The setup that I have is like this:
- Dan Brown <- Main Category
- Angels and Demons <- Sub Category
- Angels and Demons Review <- Post in Angels and Demons category
- The Davinci Code <- Sub Category
- The Davinci Code Review <- Post in The Davinci Code category
So right now the page (a custom template) will list Dan Brown. I get the category list like this:
Code:
<?php wp_list_categories('title_li=&sort_column=name&depth=1&hide_empty=0'); ?>
When I click Dan Brown I want to see another page that lists Angels and Demons and The Davinci Code...
Then I want to click the name of the book to see the review...
Right now Clicking Dan Brown shows the review :-(
How do I change the target of the link on the initial page?
Thanks!!