アイテムに深さ1以上のサブアイテムがあるかどうかを判断しようとしています。現在の項目がサブページを持っていてtrue
を返している場合、現在の項目がデータベース内で検索されるような関数やクエリがあると、どこにも見つからないことがあります。
これを私が目指しているのは、<li>
クラスに、メニュー項目にサブ項目があるかどうかに応じて異なるクラスを指定することです。
私がこれまでに持っているもののためのコードからの抜粋:
if ($depth == 0)
{
if( /*page has subpages*/ )
{
$class_names = $class_names ? ' class="menu-enable"' : '';
}
else
{
$class_names = $class_names ? '' : '';
}
}
else
{
$class_names = $class_names ? ' class="sub-menu-enable"' : '';
}
今私は で実行されるいくつかのコードが必要です - サブページ があります。親アイテムを検出する方法
編集:
フルカスタムウォーカークラス:
class header_walker extends Walker_Nav_Menu
{
/**
* @see Walker::start_lvl()
* @since 3.0.0
*
* @param string $output Passed by reference. Used to append additional content.
* @param int $depth Depth of page. Used for padding.
*/
function start_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "\n</li>$indent<div class=\"menu-items\"><div class=\"submenu-item\"><ul>\n";
}
/**
* @see Walker::end_lvl()
* @since 3.0.0
*
* @param string $output Passed by reference. Used to append additional content.
* @param int $depth Depth of page. Used for padding.
*/
function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "$indent</ul></div></div>\n";
}
/**
* @see Walker::start_el()
* @since 3.0.0
*
* @param string $output Passed by reference. Used to append additional content.
* @param object $item Menu item data object.
* @param int $depth Depth of menu item. Used for padding.
* @param int $current_page Menu item ID.
* @param object $args
*/
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$class_names = $value = '';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$classes[] = 'menu-item-' . $item->ID;
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
/*
// values of depth
echo $item->title.' - ';
echo $depth.'<br />';
echo $class_names;
if ($depth == 0)
{
if( check for subpage )
{
$class_names = $class_names ? ' class="menu-enable"' : '';
}
else
{
$class_names = $class_names ? '' : '';
}
}
else
{
$class_names = $class_names ? ' class="sub-menu-enable"' : '';
}*/
$output .= $indent . '<li' . $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 ) .'"' : '';
$item_output = $args->before;
$item_output .= '<a'. $attributes .'>';
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
/**
* @see Walker::end_el()
* @since 3.0.0
*
* @param string $output Passed by reference. Used to append additional content.
* @param object $item Page data object. Not used.
* @param int $depth Depth of page. Not Used.
*/
function end_el( &$output, $item, $depth = 0, $args = array() ) {
$output .= "</li>\n";
}
}
wp_nav_menu_objects
をフィルタリングして、クラスを1つのRushに追加することができます。カスタムウォーカーも必要ありません。
add_filter( 'wp_nav_menu_objects', 'add_has_children_to_nav_items' );
function add_has_children_to_nav_items( $items )
{
$parents = wp_list_pluck( $items, 'menu_item_parent');
foreach ( $items as $item )
in_array( $item->ID, $parents ) && $item->classes[] = 'has-children';
return $items;
}
クラスhas-children
は、一致するli
要素に自動的に割り当てられるようになりました。
カスタムウォーカーでは、関数start_el()
の$item->classes
にクラスがあります。デフォルトのwalkerからの次の行がうまくいきます。
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
WordPress 3.7 (2013年10月)以降、テーマメニューの子メニュー項目とページを示すためにCSSクラスが追加されました - WordPressコアでは面倒なのでカスタムウォーカーを使用する必要はありません。
CSSクラスはmenu-item-has-children
とpage_item_has_children
という名前です。
結果のHTML出力は次のようになります(明確にするために簡略化されています)。
<ul>
<li><a href="#">Home</a></li>
<li class="menu-item-has-children"><a href="#">About</a>
<ul class="sub-menu">
<li><a href="#">Our Mission</a></li>
</ul>
</li>
<li><a href="#">Contact Us</a></li>
</ul>