Skip to content

Instantly share code, notes, and snippets.

@geeac
Created May 20, 2016 07:23
Show Gist options
  • Save geeac/362689f66645c48accd650696f37d1b7 to your computer and use it in GitHub Desktop.
Save geeac/362689f66645c48accd650696f37d1b7 to your computer and use it in GitHub Desktop.
Genesis Add search form to primary navigation
//* Add search form to navigation
/*add_filter( 'wp_nav_menu_items', 'market_primary_nav_extras', 10, 2 );
function market_primary_nav_extras( $menu, $args ) {
if ( 'primary' !== $args->theme_location ) {
return $menu;
}
ob_start();
get_search_form();
$search = ob_get_clean();
$menu .= '<li class="right search">' . $search . '</li>';
return $menu;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment