Customise wp_List_pages to output a UL LI
Arguments of wp_link_pages() Maybe this will work for you: $args = array( ‘before’ => ‘<ul><li>’ . __( ‘Pages:’ ), ‘after’ => ‘</li></ul>’, ‘link_before’ => ”, ‘link_after’ => ”, ‘next_or_number’ => ‘number’, ‘separator’ => ‘</li><li>’, ‘nextpagelink’ => __( ‘Next page’ ), ‘previouspagelink’ => __( ‘Previous page’ ), ‘pagelink’ => ‘%’, ‘echo’ => 1 ); wp_link_pages( $args … Read more