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

Есть ли способ передать переменную из start_el в start_lvl? Я хочу разместить описание меню в оболочке пунктов подменю.

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'><div class='menu-image-container'><div class='menu-image'></div></div>\n";
}
function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "$indent<div class='clear'></div></ul>\n";
}
}

Я пытался сохранить описание как переменную в start_el и получить доступ к нему с помощью global в start_lvl … но ничего не возвращает.

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

Может кто-нибудь помочь мне с этим? Определенно есть некоторые из вас, кто знает, как пользоваться меню WordPress Walker.

2

Решение

Вот способ использовать этот код, и он будет отображать родительское описание.
Шаги для его использования.
1: Скопируйте приведенный ниже класс и вставьте его в файл functions.php.
2: вызвать меню как

 wp_nav_menu(array(
'menu_id'=>'',
'menu_class'=>'',
'container'=>'',
'theme_location'=>'#enter theme location#',
'walker'=> new customize_menu_walker()
));
<br/>

3: см. Результат.

class customize_menu_walker extends Walker_Nav_Menu
{
function start_el(&$output, $item, $depth, $args)
{
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

$class_names = $value = '';

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

$dbclasses=$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
$class_names = ' class="'. esc_attr( $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;

//specially for two menu
//specially for two menu
//convert string to array
$dbclassesArr = explode(" ",$dbclasses);

$item_output .= '<a'. $attributes .'>';

if(in_array("menu-item-has-children", $dbclassesArr)){
$description  = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';//description display here.
}

$item_output .= $args->link_before .apply_filters( 'the_title', $item->title, $item->ID );
$item_output .= $description.$args->link_after;
$item_output .= ' '.'</a>';
$item_output .= $args->after;

$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}

Теперь после обновления этой функции в вашем меню будет отображаться описание родительского меню.
Вот код

Благодарю вас.

0

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

Мне удалось найти решение этого вопроса, который, казалось, оставался без ответа в течение нескольких дней здесь — Как я могу добавить описание родительского меню в мое меню WordPress?

0

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