我想在主页内容中添加特定父页面的子页面列表。为此,我尝试添加wp_nav_menu
自定义字段 - 但没有运气。
请指教
检查以下代码是否适合您。
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 } ?>