Display sub menus as separate lists

I’ve decided to not change anything in walker class and “parse” the menu with jQuery, clone each children and append to “menu” container which gives me the result I was looking for. The only thing missing is how to pass ID of menu element which has childrens to start_lvl function. Thanks

Open WordPress Page from selected option dropdown

Looks like not many folks do this. Anyway here’s something that works for me to get drop-down select to go to WordPress page” <?php $my_title = $_POST[‘place’]; global $wpdb; $mypost = $wpdb->get_row( “SELECT * FROM wp_posts WHERE post_title=”” . $my_title . “” ” ); $permalink = get_permalink($mypost->ID); echo “<a href=$permalink><BR>Click Here to Go to Selection</a>”; … Read more

Creating an accordion style menu

The code for WordPress would be: wp_nav_menu() for custom nav menus wp_page_menu() as the default fallback for custom nav menus wp_list_pages() for a list of static pages See the linked Codex pages for the various parameters to pass to each, and the CSS classes output by each.

How do I turn this form into a search form? [closed]

Please try this , <form name=”searchBox” action=”<?php echo get_bloginfo(‘url’); ?>” class=”search-form” method=”get” role=”search” > <input type=”text” name=”s” class=”searchBox” placeholder=”search” value=”<?= $_GET[‘s’] ?>” required /> <button type=”submit” class=”searchBtn” >search</button> </form>

add additional anchors in navigation menu

Defining a Menu You must define a menu before you can add items to it. Login to the WordPress Dashboard. From the ‘Appearance’ menu on the left-hand side of the Dashboard, select the ‘Menus’ option to bring up the Menu Editor. Select Create a new menu at the top of the page Enter a name … Read more