【问题标题】:Add attribute to Nav Walker in WP (I think it's more a PHP issue)在 WP 中为 Nav Walker 添加属性(我认为这更像是一个 PHP 问题)
【发布时间】:2016-08-07 05:38:18
【问题描述】:

我在这里写,因为我认为它更多是与 PHP 相关的问题,而不是 WordPress。

我过去曾使用下面的菜单漫游器来显示动态子菜单,效果很好。我正在使用 wordpress 开发页面中的直接复制和粘贴功能,这对我来说已经足够了。

但是,现在我正在努力进行一些调整以将 ID 属性添加到 UL,因为我正在尝试使用 MaterializeCSS 框架制作下拉菜单。

我已成功添加 ID 以匹配锚 data-activates="dropdown1" 中的数据激活,如下所示 -

<li><a class="dropdown-button" href="#!" data-activates="dropdown1">Dropdown</a></li>

但我不能为 UL 做同样的事情。

<ul id="dropdown1" class="dropdown-content">

请你帮我解决一下好吗? 这是材料框架文档http://materializecss.com/navbar.html#navbar-dropdown(以防你不理解我)和我的 Naw_walker 函数

/**
 * Starts the list before the elements are added.
 *
 * Adds classes to the unordered list sub-menus.
 *
 * @param string $output Passed by reference. Used to append additional content.
 * @param int    $depth  Depth of menu item. Used for padding.
 * @param array  $args   An array of arguments. @see wp_nav_menu()
 */
function start_lvl( &$output, $depth = 0, $args = array() ) {
    // Depth-dependent classes.
    $indent = ( $depth > 0  ? str_repeat( "\t", $depth ) : '' ); // code indent
    $display_depth = ( $depth + 1); // because it counts the first submenu as 0
    $classes = array(
        'dropdown-content',
        ( $display_depth % 2  ? 'menu-odd' : 'menu-even' ),
        ( $display_depth >=2 ? 'sub-sub-menu' : '' ),
        'menu-depth-' . $display_depth
    );
    $class_names = implode( ' ', $classes );

    // Build HTML for output.
    $output .= "\n" . $indent . '<ul class="' . $class_names . '">' . "\n";
}

/**
 * Start the element output.
 *
 * Adds main/sub-classes to the list items and links.
 *
 * @param string $output Passed by reference. Used to append additional content.
 * @param object $item   Menu item data object.
 * @param int    $depth  Depth of menu item. Used for padding.
 * @param array  $args   An array of arguments. @see wp_nav_menu()
 * @param int    $id     Current item ID.
 */
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
    global $wp_query;
    $indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent

    // Depth-dependent classes.
    $depth_classes = array(
        ( $depth == 0 ? 'main-menu-item' : 'sub-menu-item' ),
        ( $depth >=2 ? 'sub-sub-menu-item' : '' ),
        ( $depth % 2 ? 'menu-item-odd' : 'menu-item-even' ),
        'menu-item-depth-' . $depth
    );
    $depth_class_names = esc_attr( implode( ' ', $depth_classes ) );

    // Passed classes.
    $classes = empty( $item->classes ) ? array() : (array) $item->classes;
    $class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );

    // Build HTML.
    $output .= $indent . '<li id="nav-menu-item-'. $item->ID . '" class="' . $depth_class_names . ' ' . $class_names . '">';

    // Link attributes.
    $attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
    $attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
    $attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
    $attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';
    $attributes .= ' class="dropdown-button" data-activates="dropdown-'. $item->ID . ( $depth > 0 ? '' : '' ) . '"';
    // $attributes .=  ;



    // Build HTML output and pass through the proper filter.
    $item_output = sprintf( '%1$s<a%2$s>%3$s%4$s%5$s<i class="material-icons right">arrow_drop_down</i></a>%6$s',
        $args->before,
        $attributes,
        $args->link_before,
        apply_filters( 'the_title', $item->title, $item->ID ),
        $args->link_after,
        $args->after
    );

    $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}

}

所以我恳请:
我想为 UL 添加相同的 ID 以匹配锚点数据激活以激活下拉菜单。

谢谢

【问题讨论】:

    标签: php nav materialize


    【解决方案1】:

    嗯,我已经找到了解决方案,所以我认为在这里发布它会很好。

    这是适合我的代码。

        <?php
    class Materialize_CSS_Menu_Walker extends Walker {
      var $db_fields = array( 'parent' => 'menu_item_parent', 'id' => 'db_id' );
    
        function start_lvl( &$output, $depth = 0, $args = array() ) {
            // Depth-dependent classes.
            $indent = ( $depth > 0  ? str_repeat( "\t", $depth ) : '' ); // code indent
            $display_depth = ( $depth + 1); // because it counts the first submenu as 0
            $classes = array(
                'dropdown-content',
                ( $display_depth % 2  ? 'menu-odd' : 'menu-even' ),
                ( $display_depth >=2 ? 'sub-sub-menu' : '' ),
                'menu-depth-' . $display_depth
            );
            $class_names = implode( ' ', $classes );
    
            // Build HTML for output.
            $output .= "\n" . $indent . ' class="' . $class_names . '">' . "\n";
        }
    
      function end_lvl( &$output, $depth = 0, $args = array() ) {
        $indent = str_repeat("\t", $depth);
        $output .= "$indent</ul>\n";
      }
    
      /**
     * Start the element output.
     *
     * Adds main/sub-classes to the list items and links.
     *
     * @param string $output Passed by reference. Used to append additional content.
     * @param object $item   Menu item data object.
     * @param int    $depth  Depth of menu item. Used for padding.
     * @param array  $args   An array of arguments. @see wp_nav_menu()
     * @param int    $id     Current item ID.
     */
        function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
            global $wp_query;
            $indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
    
            // Depth-dependent classes.
            $depth_classes = array(
                ( $depth == 0 ? 'main-menu-item' : 'sub-menu-item' ),
                ( $depth >=2 ? 'sub-sub-menu-item' : '' ),
                ( $depth % 2 ? 'menu-item-odd' : 'menu-item-even' ),
                'menu-item-depth-' . $depth
            );
            $depth_class_names = esc_attr( implode( ' ', $depth_classes ) );
    
            // Passed classes.
            $classes = empty( $item->classes ) ? array() : (array) $item->classes;
            $class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );
    
        /* Add active class */
        if(in_array('current-menu-item', $classes)) {
          $classes[] = 'active';
          unset($classes['current-menu-item']);
        }
    
        /* Check for children */
        $children = get_posts(array(
          'post_type' => 'nav_menu_item',
          'nopaging' => true,
          'numberposts' => 1,
          'meta_key' => '_menu_item_menu_item_parent',
          'meta_value' => $item->ID
          ));
    
        if (!empty($children)) {
          $classes[] = 'dropdown';
        }
        $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
        // $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
        // $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );
        // $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
         $output .= $indent . '<li id="nav-menu-item-'. $item->ID . '" class="' . $depth_class_names . '">';
        $attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
        $attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
        $attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
        $attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';
        $attributes .= ! empty( $children )         ? ' class="dropdown-button" data-activates="dropdown-'. $item->ID .'"' : '';
    
        $item_output .= '<a'. $attributes .'>';
        $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
    
        if(!empty($children))
          $item_output .= '<i class="material-icons right">arrow_drop_down</i>';
    
        $item_output .= '</a>';
    
        $item_output .= $args->after;
    
        if(!empty($children))
          $item_output .= '<ul id="dropdown-'.$item->ID.'"';
        $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    
      }
      function end_el( &$output, $item, $depth = 0, $args = array() ) {
        $output .= "</li>\n";
      }
    }
    

    【讨论】:

      猜你喜欢
      • 2017-08-30
      • 2017-10-02
      • 1970-01-01
      • 1970-01-01
      • 2018-07-07
      • 2013-01-26
      • 2016-03-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多