Show Menu Description

I’m really surprised builders don’t include Menu Description in their options! I have zero idea how to make this happen and pull in the description:
image

Description should load like so:

3 Likes

@aces try adding this to your Bricks child-theme in the functions.php file.

add_filter('walker_nav_menu_start_el', 'add_description_to_menu_item', 10, 4);

function add_description_to_menu_item($item_output, $item, $depth, $args) {
    if (!empty($item->description)) {
        $item_output .= '<span class="menu-item-description">' . $item->description . '</span>';
    }
    return $item_output;
}
1 Like

How did you get the description field in the menu settings? Is it some kind of plugin? In my WP there is no this field.

1 Like