Adding elements to wp_list_pages (within , but before )
If I Understood your question right, instead of wp_list_pages, you can use a custom query using get_pages e.g. $args = array( ‘sort_order’ => ‘ASC’, ‘sort_column’ => ‘menu_order’, ‘hierarchical’ => 1, ‘exclude’ => ”, ‘child_of’ => 0, ‘parent’ => -1, ‘exclude_tree’ => ”, ‘number’ => ”, ‘offset’ => 0, ‘post_type’ => ‘page’, ‘post_status’ => ‘publish’ ); … Read more