Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Created February 23, 2018 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anwerashif/7d813d7ebf58cf31b9547d57552e261b to your computer and use it in GitHub Desktop.
Save anwerashif/7d813d7ebf58cf31b9547d57552e261b to your computer and use it in GitHub Desktop.
Add Search Box to Genesis' Primary Menu
<?php
// Do NOT include the opening PHP tag
// Add search form to 'primary' menu
function theme_menu_extras( $menu, $args ) {
// Change 'primary' to 'secondary' to add extras to the secondary navigation menu
if ( 'primary' !== $args->theme_location )
return $menu;
// add a search form to the navigation menu
ob_start();
get_search_form();
$search = ob_get_clean();
$menu .= '<li class="right search">' . $search . '</li>';
return $menu;
}
add_filter( 'wp_nav_menu_items', 'theme_menu_extras', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment