jebu1104
9/22/2015 - 5:37 PM

Append search to end of nav by theme location

Append search to end of nav by theme location

//Add search to end of theme
add_filter( 'wp_nav_menu','add_search_box', 10, 2 );
function add_search_box( $items, $args ) {
    if ( 'primary_navigation' == $args->theme_location )
    $items .= '<li class="search">' . get_search_form( false ) . '</li>';
    return $items;
}