so....
trying to do this...
Show an excerpt from all Pages as either text or link_after to include img, a, strong, em tags (et al general html).
My attempt to do this is in the header where the menu is now formatted to show the names of the pages and their corresponding excerpt in a series of divs that look like buttons rather than the typical horizontal menu (formatted to show normally on all of the pages _except_ the front page).
I've installed a plugin (against my will, WP!) to show excerpts on Pages and want to incorporate that content (the_content) or excerpt (the_excerpt) on the front page just after the title...
check out the code...
<?php
wp_reset_query();
if (is_front_page())
{ echo '<div id="band"> <ul id="main-nav" class="right">
<ul>',(wp_list_pages(title_li=&link_after=<?php the_excerpt; ?>));
}
else
{ echo '<div id="menu"> <ul id="main-nav" class="right">
<ul>',(wp_list_pages('title_li'));
}
?>
</div></ul>
To output something like this:
<div><ul><li><a>Page1 Title the content of page1 or the excerpt from that page</a></li></ul></div>
<div><ul><li><a>Page2 Title the content of page2 or the excerpt from that page</a></li></ul></div>
<div>...etc