如何将<span>添加到每个带有文本链接到data-attr的菜单链接?


8

我如何获得类似下面的内容?我的代码是这样的:

wp_nav_menu(
     array(
       'theme_location' => 'header_menu',
       'container_id' => 'menu',
       'link_before' => '<span data-hover="link-text-here">',
       'link_after' => '</span>',
     )
  );

我想得到以下结果:

<nav class="main-nav">
    <li><a href="#"><span data-hover="Home">Home</span></a></li>
    <li><a href="#"><span data-hover="Proyects">Proyects</span></a></li>
</nav>

请给我提意见。

Answers:


4

解决方案1:使用自定义沃克

我从wp_nav_menu链接锚标记中的add span类中获得了一些想法,并根据您的要求进行了一些更改。

1.首先将以下代码添加到您的functions.php中。

class Nav_Walker_Nav_Menu extends Walker_Nav_Menu{
  function start_el(&$output, $item, $depth, $args){
       global $wp_query;
       $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
       $class_names = $value = '';
       $classes = empty( $item->classes ) ? array() : (array) $item->classes;
       $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
       $class_names = ' class="'. esc_attr( $class_names ) . '"';

       $output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $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        ) .'"' : '';


       $description  = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';



        $item_output = $args->before;
        $item_output .= '<a'. $attributes .'><span data-hover="'. $item->title .'">';
        $item_output .=$args->link_before .apply_filters( 'the_title', $item->title, $item->ID );
        $item_output .= $description.$args->link_after;
        $item_output .= '</span></a>';
        $item_output .= $args->after;

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

2.将以下代码添加到您header.phpwp_nav_menu安装位置。 下面说明的是代码,因此在这种情况下它将安装新的自定义菜单Nav_Walker_Nav_Menu

<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary', 'walker' => new Nav_Walker_Nav_Menu() ) ); ?>

希望这对您有帮助!

解决方案2:使用 wp_list_pages

请查看此页面。您可以看到他们的摘录。如果将跨度放在链接标记周围,则可以使用link_beforelink_after

wp_list_pages("link_before=<span data-hover="link-text-here">&link_after=</span>");

注意:试图在第98行的/Applications/MAMP/htdocs/wp.dev/wp-content/themes/eta-theme/functions.php中获取非对象的属性
Mohamed Rihan '16

那么,第98行的代码是什么?
AddWeb Solution Pvt Ltd

$ item_output = $ args->之前; $ item_output。='<a'。$ attributes。'> <span data-hover =“'。$ item-> title。'”>'; $ item_output。= $ args-> link_before .apply_filters('the_title',$ item-> title,$ item-> ID); $ item_output。= $ description。$ args-> link_after; $ item_output。='</ span> </a>'; $ item_output。= $ args->之后;
Mohamed Rihan '16

现在看来还可以。它的原因是我没有在dashbord上添加菜单。.谢谢
Mohamed Rihan '16

8

从4.4.0版开始,添加了“ nav_menu_item_args”过滤器。这使您可以为每个项目设置“ link_before”和“ link_after”属性。

add_filter('nav_menu_item_args', function ($args, $item, $depth) {
    if ($args->theme_location == 'header_menu') {
        $title             = apply_filters('the_title', $item->title, $item->ID);
        $args->link_before = '<span data-hover="' . $title . '">';
        $args->link_after  = '</span>';
    }
    return $args;
}, 10, 3);

这是不正确的。.使用过滤器后输出以下内容。<li id =“ menu-item-44” class =“ menu-item menu-item-type-post_type menu-item-object-page current-menu -item page_item page-item-24 current_page_item menu-item-44“> <a href=" sandbox.test/about”aria-current="page"> <span data-hover =“ About”>关于</ span> </a> </ li>
Daren Zammit

2

请尝试以下操作:

wp_nav_menu(
 array(
   'theme_location' => 'header_menu',
   'container_id' => 'menu',
   'walker' => new description_walker()
 )
);

并将其添加到functions.php

class description_walker extends Walker_Nav_Menu{
  function start_el(&$output, $item, $depth, $args){
       global $wp_query;
       $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
       $class_names = $value = '';
       $classes = empty( $item->classes ) ? array() : (array) $item->classes;
       $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
       $class_names = ' class="'. esc_attr( $class_names ) . '"';

       $output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $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        ) .'"' : '';


       $description  = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';



        $item_output = $args->before;
        $item_output .= '<a'. $attributes .'><span>';
        $item_output .=$args->link_before .apply_filters( 'the_title', $item->title, $item->ID );
        $item_output .= $description.$args->link_after;
        $item_output .= '<span></a>';
        $item_output .= $args->after;

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

这样,您可以轻松添加span标签...


但是我想要范围内的数据attr
Mohamed Rihan '16
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.