Change Parent Name with wp_list_pages?
You could of course use some preg_replace() tricks to solve this, but here’s a little (untested) idea using the the_title filter instead: add_filter( ‘the_title’, ‘wpse_title’ ); $children = wp_list_pages(“title_li=&include=”.$post->post_parent.”&echo=0″); where our filter callback is: function wpse_title( $title ) { remove_filter( current_filter(), __FUNCTION__ ); return __( ‘Overview’ ); } Remark 1: I think you should consider … Read more