Show WordPress Menu On External Site

There’s a couple ways to do this. One way might be to create a file on your web server, load up WP (so you can use its functions) and have it spit out the menu you want at a certain URL, like: http://site/nav.php In that file you’d do something like: <?php include( ‘./wp-load.php’ ); // … Read more

Change submenu markup

The whole idea of a custom walker class is that you can customize the menu in detail. So, you can also leave the main menu as it is and build the submenus the way you give in the image. However, as Hareesh indicates in the comments, this does require quite a lot of customization, especially … Read more