This should do the trick,Here i am using Divider(|) between the name,It’s working fine in my client site. You also try to do this one.. this code help for you
<?php
$links = wp_list_pages('title_li=&categorize=0&ort_column=ID&include=5,7,9&echo=0');
$pages = explode('</li>', $links); //create array from string returned by wp_list_bookmarks
array_pop($pages); //pop last element off array
echo implode('<span class="divider"> | </span>', $pages);?>
Advertisement