I think you misunderstood me. I want to show the menu “description” field under the menu “navigation label”.
I found a solution but I had to modify the plugin code:
https://wordpress.stackexchange.com/questions/14037/menu-items-description-custom-walker-for-wp-nav-menu
Aside from adding that custom class to my functions.php I had to modify the following files:
dcwp_jquery_accordion.php (line 118)
$out .= wp_nav_menu(
array(
'fallback_cb' => '',
'menu' => $menu,
'menu_class' => $menu_class,
+ 'echo' => false,
+ 'walker' => new Description_Walker
+ )
);
$out .= '</div>';
return $out;
}
dcwp_jquery_accordion_widget.php (line 76)
<?php
wp_nav_menu(
array(
'fallback_cb' => '',
'menu' => $nav_menu,
'container' => false,
'menu_class' => $classMenu,
'walker' => new Description_Walker
)
);
?>
</div>
<?php
Hopefully this will help someone else.