Questions for mfields (and others in the know)
1. What code did you use to apply the summary page template to the parent? (I’m just getting into php)
2. On the site I will be creating, some of the child pages have child pages themselves and so I would like to be able to create a loop or something, that will only show the excerpts of child pages 1 level deep and if there are no child pages display normal page content. ie:
If page has children {
display the_excerpt(depth of 1) //I would probably put the TEMPLATEPATH link here and mod the code in summary.php
}
else {
the_content();
}
I’m sure it’s something simple, but I can’t get the code right.
3. The plugin outputs a heap of divs (I think more than any good css’er would need). Has anyone made any mods to the output markup?