data-attrへのリンクテキストを含む各メニューリンクに<span>を追加する方法


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>

教えてください。

回答:


4

解決策1:Customize Walkerを使用する

wp_nav_menuリンクアンカータグ内にスパンクラス追加することからアイデアを得て、要件に合わせて変更を加えました。

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.php場所に以下のコードを追加しますwp_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

では、98行目のコードは何ですか?
AddWeb Solution Pvt Ltd 2016

$ 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;
Mohamed Rihan 2016

今は大丈夫だ。私のダッシュボードにメニューを追加しなかったのです。ありがとう
Mohamed

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 "> 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 );
        }
}

このようにして、簡単にスパンタグを追加できます...


しかし、範囲内のデータ属性が必要です
Mohamed Rihan
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.