1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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-&gt;attr_title ) ? ' title="'  . esc_attr( $item-&gt;attr_title ) .'"' : '';
       $attributes .= ! empty( $item-&gt;target )     ? ' target="' . esc_attr( $item-&gt;target     ) .'"' : '';
       $attributes .= ! empty( $item-&gt;xfn )        ? ' rel="'    . esc_attr( $item-&gt;xfn        ) .'"' : '';
      $attributes .= ! empty( $item-&gt;url )        ? ' href="'   . esc_attr( $item-&gt;url        ) .'"' : '';
 
 
       $description  = ! empty( $item-&gt;description ) ? '<span>'.esc_attr( $item-&gt;description ).'</span>' : '';
 
 
 
        $item_output = $args-&gt;before;
        $item_output .= '<a'. $attributes="" .'=""><span data-hover="'. $item->title .'">';
        $item_output .=$args-&gt;link_before .apply_filters( 'the_title', $item-&gt;title, $item-&gt;ID );
        $item_output .= $description.$args-&gt;link_after;
        $item_output .= '</span>';
        $item_output .= $args-&gt;after;
 
        $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    }
}
 
</a'.></li>