WordPress:仅从自定义导航菜单中显示当前页面的顶级父母的子菜单项目



我需要帮助组合这两个代码:

这个:

<?php wp_nav_menu(
                array(
                    'theme_location'  => 'primary',
                    'container_class' => 'collapse navbar-collapse',
                    'container_id'    => 'navbarNavDropdown',
                    'menu_class'      => 'navbar-nav',
                    'fallback_cb'     => '',
                    'menu_id'         => 'main-menu',
                    'walker'          => new rorentrep_WP_Bootstrap_Navwalker(),
                )
            );
?>

和此(来自https://www.minddevelopmentanddesign.com/blog/showing-current-pages-parents-parents-sub-menu-items-custom-nav-menu-wordpress/):

<?php
         $section_id = empty( $post->ancestors ) ? $post->ID : end( $post->ancestors );
         $locations = get_nav_menu_locations();
         $menu = wp_get_nav_menu_object( $locations[ 'primary' ] ); // 'primary' is our nav menu's name
         $menu_items = wp_get_nav_menu_items( $menu->term_id, array( 'post_parent' => $section_id ) );
             if( !empty( $menu_items ) ) {
                 echo '<ul class="section-submenu">';
                 foreach( $menu_items as $menu_item ) {
                 echo '<li><a href="' . $menu_item->url . '">' . $menu_item->title . '</a></li>';
             }
             echo '</ul>';
             }
?>

更准确地说,我希望第二代码回声以第一个代码出现的链接。

我的页面的结构是这样的:

Business
 - Sub page a
 - Sub page b
 - Sub page c
Private
 - Sub page x
 - Sub page y
 - Sub page z

每当我访问一个孩子的业务页面时,我都希望菜单仅列出子页面A-C,当我访问私人的孩子页面时,我希望菜单仅列出子页面X-Z。

可以添加多个页面,我不想针对特定页面ID。

使用Walker Bootstrap Nav(将电流类别添加到NAV-ITEMS),将输出代码像WP_NAV_MENU一样包裹和嵌套的主要原因。

在您的沃克类中,您可以为每个级别设置行为。然后检查元素方法中的深度:start_el

class Footer extends Walker_Nav_Menu
{
    function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0)
    {
      if ($depth == 0) {
        $output .= '
        <li class="list-inline-item">
          <a href="' . $item->url . '" title="' . $item->title . '">
            ' .  $item->title  . '
          </a>
        </li>';
      }
    }
    function start_lvl( &$output, $depth = 0, $args = array() ) {
      $output.= '';
    }
    function end_lvl( &$output, $depth = 0, $args = array() ) {
      $output.= '';
    }
}

相关内容

  • 没有找到相关文章

最新更新