Include parent page in list of child pages
I am trying to list pages for a specific ID but want to include the parent page in the list
?php
$parent = 83;
wp_list_pages( array(
'title_li' = '',
'child_of' = $parent,
) );
?
I tried adding 'include' = 83
but then it only listed the parent and not the children.
Topic wp-list-pages pages Wordpress
Category Web