March 20, 2015 at 3:13 pm
#4301
Ernest Marcinko
Keymaster
Hi!
This should do the trick:
[code]//*ADD SEARCH TO HEADER RIGHT MENU
add_filter( ‘wp_nav_menu_items’, ‘theme_menu_extras’, 10, 2 );
function theme_menu_extras( $menu, $args ) {
if ( ‘header’ !== $args->theme_location )
return $menu;
$menu .= ‘<li class="right search">’ . do_shortcode(‘wpdreams_ajaxsearchpro id=1’) . ‘</li>’;
return $menu;
}[/code]