wp_nav_menu
関数内で次のように使用して、各メニュー項目が選択ドロップダウンのオプションになっている選択ドロップダウンメニューを作成します。
'items_wrap' => '<select>%3$s</select>'
'before' => '<option value="">'
'after' => '</option>'
'before'
宣言にリンク値を追加するにはどうすればいいですか?これについてより良い方法はありますか? wp_dropdown_pages
については知っていますが、ユーザーに "メニュー"ページからメニューを制御できるようにしたいので、それはうまくいきません。
Wp_nav_menuではこれを行うことができません。リスト項目が出力され、コードで無効なマークアップが生成されるためです。
代わりに wp_get_nav_menu_items() を使用してください。
class Walker_Nav_Menu_Dropdown extends Walker_Nav_Menu{
// don't output children opening tag (`<ul>`)
public function start_lvl(&$output, $depth){}
// don't output children closing tag
public function end_lvl(&$output, $depth){}
public function start_el(&$output, $item, $depth, $args){
// add spacing to the title based on the current depth
$item->title = str_repeat(" ", $depth * 4) . $item->title;
// call the prototype and replace the <li> tag
// from the generated markup...
parent::start_el(&$output, $item, $depth, $args);
$output = str_replace('<li', '<option', $output);
}
// replace closing </li> with the closing option tag
public function end_el(&$output, $item, $depth){
$output .= "</option>\n";
}
}
あなたのテンプレートでは、これを次のように使用してください。
wp_nav_menu(array(
'theme_location' => 'primary', // your theme location here
'walker' => new Walker_Nav_Menu_Dropdown(),
'items_wrap' => '<select>%3$s</select>',
));
私はそれが便利だとわかりました:
あなたはCSSコードdropdovnメニューを単純化するためにどんな反応にも従うことができます。
parent
を追加しますdepth
クラスを追加する(depth0、depth1、depth2 ...)あなたのテーマをfunction.phpに追加する
class DD_Wolker_Menu extends Walker_Nav_Menu {
function display_element( $element, &$children_elements, $max_depth, $depth=0, $args, &$output ){
$GLOBALS['dd_children'] = ( isset($children_elements[$element->ID]) )? 1:0;
$GLOBALS['dd_depth'] = (int) $depth;
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
}
}
add_filter('nav_menu_css_class','add_parent_css',10,2);
function add_parent_css($classes, $item){
global $dd_depth, $dd_children;
$classes[] = 'depth'.$dd_depth;
if($dd_children)
$classes[] = 'parent';
return $classes;
}
今header.phpに
wp_nav_menu( array( 'container_class' => '','container' => '', 'menu' => 'header-menu', 'walker'=> new DD_Wolker_Menu ) );
header-menu
はあなたのメニューの名前に置き換えられます
CSSのサンプルコードは
#menu-header-menu{
margin: 0;
padding: 0;
}
#menu-header-menu ul{
}
#menu-header-menu> li{
display: inline;
margin-left: 1.618em;
}
#menu-header-menu li{
list-style: none;
}
#menu-header-menu li a{
text-decoration: none;
font-size: 1em;
font-family: 'Lato',Helvetica,Arial,sans-serif ;
letter-spacing: 1px;
}
#menu-header-menu li.parent::after{
content:'+';
}
#menu-header-menu .sub-menu {
display: none;
position: absolute;
background-color: #fff;
}
#menu-header-menu li:hover>.sub-menu{
display: inline;
width: auto;
height: auto;
border: solid 1px #BBBBBB;
z-index: +1;
}
where #menu-header-menu
- メインのULリストを指定します(これも更新する必要があります)