Skip to content

Instantly share code, notes, and snippets.

@MichaelVanDenBerg
Created February 3, 2016 15:36
Show Gist options
  • Save MichaelVanDenBerg/6819b21176430d962f9c to your computer and use it in GitHub Desktop.
Save MichaelVanDenBerg/6819b21176430d962f9c to your computer and use it in GitHub Desktop.
Add a search toggle after the regular menu items.
function genius_add_search_toggle ( $items, $args ) {
if ( $args->theme_location == 'social') {
$items .= '<li id="search-toggle" class="menu-item"><a href="#"><span class="screen-reader-text">Search Toggle</span></a></li>';
}
return $items;
}
add_filter( 'wp_nav_menu_items', 'genius_add_search_toggle', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment