Как я могу добавить описание родительского меню в мое меню WordPress?

Я ввел описание в родительские пункты меню в WordPress, но они не отображаются в моей теме.

Я знаю, что класс Walker можно использовать для внесения изменений в меню, но я не знаю, как его кодировать.

Вот чего я хочу добиться:

<nav id="main-menu" role="navigation">
<div class="menu-main-menu-container">
<ul id="menu-main-menu" class="menu">
<!-- REPEATING MENU ITEM START -->
<li class="menu-parent-item"><a>Face</a>
<ul class="sub-menu">
<li class="menu-image-container">
<div class="menu-image"></div>
<div class="menu-description">[Face menu item description]</div>
</li>
<li class="heading">Face</li>
<ul class="sub-menu">
<li class="menu-item">Sub menu 1</li>
<li class="menu-item">Sub menu 2</li>
<li class="menu-item">Sub menu 3</li>
</ul>
<li class="heading">Ear</li>
<ul class="sub-menu">
<li class="menu-item">Sub menu 1</li>
<li class="menu-item">Sub menu 2</li>
<li class="menu-item">Sub menu 3</li>
</ul>
<li class="heading">Eyes</li>
<ul class="sub-menu">
<li class="menu-item">Sub menu 1</li>
<li class="menu-item">Sub menu 2</li>
<li class="menu-item">Sub menu 3</li>
</ul>
</ul>
</li>
<!-- REPEATING MENU ITEM END -->
</ul>
</div>

Как видите, я хочу, чтобы отображалось только описание родительского пункта меню, но оно должно быть в первом ul.sub-menu в родительском элементе списка.

Как я мог кодировать ходок, который использует start_lvl, start_el а также end_lvl справиться с этим эффективно?

2

Решение

Хорошо, я не уверен, что это дурак, но вот моя попытка:

поэтому вам необходимо убедиться, что описание включено в консоли меню администратора (в раскрывающемся списке «Параметры экрана»)

Ваш первый пункт меню должен быть Face, затем Face снова как его потомок, а затем sub neu пунктами как потомки.

Надеюсь это поможет!

в вашем functions.php

class Description_Walker extends Walker_Nav_Menu
{
/**
* Start the element output.
*
* @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. May be used for padding.
* @param  array $args    Additional strings.
* @return void
*/
function display_element( $element, &$children_elements, $max_depth, $depth=0, $args, &$output )
{
$id_field = $this->db_fields['id'];
if ( is_object( $args[0] ) ) {
$args[0]->has_children = ! empty( $children_elements[$element->$id_field] );
}
return parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
}
function start_lvl( &$output, $depth=0, $args=array() ) {
// depth dependent classes
$indent = ( $depth > 0  ? str_repeat( "\t", $depth ) : '' ); // code indent
$display_depth = ( $depth); // because it counts the first submenu as 0
$classes = array('sub-menu');
$class_names = implode( ' ', $classes );

// build html
$output .= "\n" . $indent . '<ul class="' . $class_names . '">' . "\n";
}
function start_el(&$output, $item,  $depth = 0, $args = array(), $current_object_id = 0)
{

$classes     = empty ( $item->classes ) ? array () : (array) $item->classes;

$class_names = join(
' '
,   apply_filters(
'nav_menu_css_class'
,   array_filter( $classes ), $item
)
);

if ($args->has_children && $depth == 0){
! empty ( $class_names )
and $class_names = ' class="menu-parent-item"';
}else if($depth == 1){
! empty ( $class_names )
and $class_names = ' class="heading"';
}else{
! empty ( $class_names )
and $class_names = ' class="'. esc_attr( $class_names ) .'"';
}

$output .= "<li id='menu-item-$item->ID' $class_names>" ;
$attributes  = '';

! 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 )
? '<div class="menu-description">' . esc_attr( $item->description ) . '</div>' : '';

$title = apply_filters( 'the_title', $item->title, $item->ID );
if (  $depth == 0) {//top level items
$item_output = $args->before.$title.'</li><ul class="sub-menu"><li class="menu-image-container"><div class="menu-image"></div>'.$description.'</li>';
}
else if(  $depth == 1){
$item_output = $args->before.$title.'</li>';
}
else{//everything else
$item_output = $args->before
. "<a $attributes>". $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
);

}
}

в вашем заголовке (или где ваше меню)

<nav id="main-menu" role="navigation"><?php wp_nav_menu( array('menu' => 'Main', 'container' => 'div', 'container_class' => 'menu-main-menu-container', 'menu_id' => 'menu-main-menu', 'walker' => new Description_Walker )); ?></nav>
2

Другие решения

Мне удалось заставить меню отображаться как и прежде, добавив описание родительского меню именно там, где я хотел, просто добавив к тому, что у меня уже было.

У меня уже был ходок, который создал контейнер изображения подменю и контейнер описания

// Submenu walker to add image
class submenu_walker extends Walker_Nav_Menu {
function start_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "\n$indent<ul class='sub-menu'><li class='menu-image-container'><div class='menu-image'></div><div class='menu-description'></div></li>\n";
}
function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "$indent<li><div class='clear'></div></li></ul>\n";
}
}

Тогда мне удалось найти функцию, которая использует start_el и может присвоить описание переменной, но не выводить ее, а затем просто вывести $item_output как обычно.

function add_menu_description( $item_output, $item, $depth, $args ) {
$description = __( $item->post_content );
return $item_output;
}
add_filter( 'walker_nav_menu_start_el', 'add_menu_description', 10, 4);

Конечно, теперь мне нужно было использовать $description в моей другой функции обхода подменю, так что я просто создал глобальную переменную в обоих, и результат — именно то, что мне нужно!

ЗАКЛЮЧИТЕЛЬНЫЙ ВЫХОД

function add_menu_description( $item_output, $item, $depth, $args ) {
global $description;
$description = __( $item->post_content );
return $item_output;
}
add_filter( 'walker_nav_menu_start_el', 'add_menu_description', 10, 4);

// Submenu walker to add image
class submenu_walker extends Walker_Nav_Menu {
function start_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
global $description;
$output .= "\n$indent<ul class='sub-menu'><li class='menu-image-container'><div class='menu-image'></div><div class='menu-description'>".$description."</div></li>\n";
}
function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "$indent<li><div class='clear'></div></li></ul>\n";
}
}
0

По вопросам рекламы [email protected]