How to create in Walker nav menu custom elements

51 Views Asked by At

Ive created already custom Walker Nav Menu in WordPress, but now I need to create an custom element on submenu like that with custom edit of this fields text and buttons https://i.stack.imgur.com/w6WQH.png

Trying this code, but it didnt show me my custom element:

add_filter( 'wp_nav_menu_items', 'your_custom_menu_item', 10, 2 );
function your_custom_menu_item ( $items, $args ) {
    if (is_single() && $args->theme_location == 'primary') {
        $items .= '<li><p>Show whatever</p><li>';
    }
    return $items;
}
0

There are 0 best solutions below