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