Hi
I am building a WP site. It has multiple menus. I want a search box to appear in the main (primary) menu only.
I am using this code:
but it is putting a searchbox into my main menu and sidebar menus.PHP Code:<?php add_filter('wp_nav_menu_items','add_search_box', 10, 2);
function add_search_box($items, $args) {
ob_start();
get_search_form();
$searchform = ob_get_contents();
ob_end_clean();
$items .= '<li class="searchbox">' . $searchform . '</li>';
return $items;
}?>
Anyone know a way to target the main menu only?
Thanks



Reply With Quote




Bookmarks