i want add list of child pages of particular parent page in content of home page. tried add wp_nav_menu
on custom field - no luck.
please advise
check following code if work you.
http://wordpress.org/support/topic/including-the-parent-page-in-a-list-of-subpages <?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->id."&echo=0"); if ($children) { $parent_title = get_the_title($post->post_parent);?> <li><a href="<?php echo get_permalink($post->post_parent) ?>"><?php echo $parent_title;?></a></li> <?php echo $children; ?> <?php } ?>
Comments
Post a Comment