If the parent of page 23 is not in the list the page 23 will not pe displayed. Here is the code, I tested 5 times:
<?php
wp_list_pages(‘include=5,9,13,23&title_li=<h2>’ . __(‘Poetry’) . ‘</h2>’ ); ?>
This will display all 4 pages because 13 is a parent of 23.
<?php
wp_list_pages(‘include=5,9,23&title_li=<h2>’ . __(‘Poetry’) . ‘</h2>’ ); ?>
This will display only 5 and 9 because 13, the parent of 23, is not in the list.
Is it possible to display only 23 but not it’s parent 13?