-
-
Save braddalton/33ad3b0295354ac65ff3a8b71395a408 to your computer and use it in GitHub Desktop.
Add Search Form To Nav Menu In Genesis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'wp_nav_menu_items', 'add_search_genesis_menu', 10, 2 ); | |
function add_search_genesis_menu( $menu, $args ) { | |
if ( 'primary' !== $args->theme_location ) | |
return $menu; | |
ob_start(); | |
get_search_form(); | |
$search = ob_get_clean(); | |
$menu .= '<li class="search">' . $search . '</li>'; | |
return $menu; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment