メニュー項目のツールチップのアンカータグにCSSクラスを追加する方法を探しています。現時点では、メニューのliにCSSクラスを簡単に追加できることがわかりましたが、メニュー項目ではなくツールチップ自体をスタイルしようとしています。
wp_nav_menuのコーデック を見ると、ツールチップアンカーへのクラスの追加を処理するために使用できる引数がありません。
使用できるフィルタはありますか?どうやって?
ちなみに、ツールチップを作成するには Simple Tooltips というプラグインを使用します。必要なのは、ツールチップを追加するHTML要素にクラスを追加することだけです。
このコードをfunctions.phpに追加してください。
class Tooltips_Walker extends Walker_Nav_Menu
{
function start_el(&$output, $item, $depth, $args)
{
$classes = empty ( $item->classes ) ? array () : (array) $item->classes;
$class_names = join(
' '
, apply_filters(
'nav_menu_css_class'
, array_filter( $classes ), $item
)
);
! empty ( $class_names )
and $class_names = ' class="'. esc_attr( $class_names ) . '"';
$attributes = '';
if(strstr($class_names, 'tooltips')) {
$attributes = ' class="tooltips"';
}
$class_names = str_replace('tooltips', '', $class_names);
$output .= "<li id='menu-item-$item->ID' $class_names>";
! empty( $item->attr_title )
and $attributes .= ' title="' . esc_attr( $item->attr_title ) .'"';
! empty( $item->target )
and $attributes .= ' target="' . esc_attr( $item->target ) .'"';
! empty( $item->xfn )
and $attributes .= ' rel="' . esc_attr( $item->xfn ) .'"';
! empty( $item->url )
and $attributes .= ' href="' . esc_attr( $item->url ) .'"';
// insert description for top level elements only
// you may change this
$description = ( ! empty ( $item->description ) and 0 == $depth )
? esc_attr( $item->description ) : '';
$title = apply_filters( 'the_title', $item->title, $item->ID );
$item_output = $args->before
. "<a $attributes title='".$description."'>"
. $args->link_before
. $title
. '</a> '
. $args->link_after
. $args->after;
// Since $output is called by reference we don't need to return anything.
$output .= apply_filters(
'walker_nav_menu_start_el'
, $item_output
, $item
, $depth
, $args
);
}
}
そして、あなたのメニューがtheme [header.php]から呼ばれるところで、このwp_nav_menuコードを更新してください。
wp_nav_menu(
array (
'menu' => 'main-menu',
'container' => FALSE,
'container_id' => FALSE,
'menu_class' => '',
'menu_id' => FALSE,
'walker' => new Tooltips_Walker
)
);
そしてメニュー項目クラスとして "tooltips"を使用して、説明をヒントのタイトルとして表示します。
そして "Zebra_Tooltip" Cssクラスのz-indexがすべての要素のz-indexよりも大きいことを確認してください。あるいはstyle.cssにこのcssコードを追加してください。
.Zebra_Tooltip{ z-index: 100000 !important;}