我有一个主导航,所有父母都有孩子。例如:
Page A: About Us
child1
child2
Page B : Our services
Child 3
Child 4
我需要在页面上包含一个水平子菜单。但我的问题是,如果当前我们在页面 A 上,页面 A 的所有子项只会显示在页面上。如果我们在页面 A 上,它应该如下所示:
页面 A 孩子 1 孩子 2
像这样,当我们转到页面 B 时,页面 B 的子页面才被显示出来。
<?php
$args = array(
'theme_location' => '',
'menu' => '13', //nav menu id, which has about-us as a menu.
'container' => 'div',
'container_class' => '',
'container_id' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
$menu_items = wp_nav_menu($args);//wp_get_nav_menu_items(13);
我尝试编写上面的代码,这导致所有父项都带有子项。
有人可以帮我吗?
简而言之,我想获取关于我们菜单条目的所有子菜单(子菜单)。(即我希望 child1 和 child2 作为带有<a>
标签的列表)