I want get all child pages in drop down list of all parent pages
I want get all child pages in drop down list of all parent pages
Try this...
<?php
$children = wp_list_pages(title_li=&child_of='.$post->ID.'&echo=0');
if ($children)
{
?>
<ul>
<?php
echo $children;
?>
</ul>
<?php
}
?>
For more options with what is displayed search this site for wp_list_pages
Parse error: syntax error, unexpected '=' in ....../wordpress/wp-content/themes/bacs/header.php on line 61
Typo here
$children = wp_list_pages(title_li=&child_of='.$post->ID.'&echo=0');
should be
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
Not the ' ( single quote )
You must log in to post.