OK. I've been trying for a few hours to get my navigation to show properly with wp_list_pages...
I have many parent categories with children... for simplicity sake, each parent is A, B, C, and D. Each parent has children:, 1, 2, 3, 4.
I am using this code:
<?php wp_list_pages("child_of=" . $post->ID . "&depth=01title_li=") ?>
This shows:
- A
- B
- C
- D
As I want. The problem now, when I click on A, it shows me:
- 1
- 2
- 3
- 4
When I want the child to show:
- A
- 1
- 2
- 3
- 4
- B
- C
- D
I should also note, that parents A, B, C, D are children of a, b, c, d (of which I do not want to show the a, b, c, d at all).
Thoughts?