Wordpress - 自定义字段& wp_nav_menu

时间:2013-07-15 12:01:21

标签: wordpress menu

我想在主页的内容中添加特定父页面的子页面列表。为此,我尝试在自定义字段上添加wp_nav_menu - 但没有运气。

请告知

1 个答案:

答案 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 } ?>