Shortcode PHP for menu mobile divi

PHOTO EMBED

Mon Aug 18 2025 03:30:31 GMT+0000 (Coordinated Universal Time)

Saved by @quanganh141220 #wordpress #divi #menumobile

// Menu
function custom_menu_shortcode( $atts ) {
    $atts = shortcode_atts(
        array(
            'name' => 'Menu Header',
        ),
        $atts
    );
 
    $menu = wp_nav_menu(
        array(
            'menu'            => $atts['name'],
            'container'       => 'nav',
            'container_class' => 'header-menu-custom',
            'echo'            => false,
            'depth'           => 0,
            'fallback_cb'     => false,
        )
    );
 
    return $menu ?: '';
}
add_shortcode( 'show_menu', 'custom_menu_shortcode' );
content_copyCOPY