hi, very nice plugin,
thanks!
i needed to strip html tags from my page titles so i've done this workaround:
// What to show?
If ($page_listing = wp_list_pages($page_args)){
// There are some sub pages
$page_listing="";
$pages = get_pages($page_args);
foreach($pages as $page)
{
$page_listing.= '<li class="page_item page-item-'.$page->ID.'"><a href="'.get_permalink($page->ID).'" title="'.strip_tags($page->post_title).'">'.strip_tags($page->post_title).'</a></li>'."\r\n";
}
http://wordpress.org/extend/plugins/sub-page-navigation-widget/