Skip to content

Instantly share code, notes, and snippets.

@erkiziltoprak
Created November 8, 2016 13:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save erkiziltoprak/47d1871c04111dc9d070e145493dec98 to your computer and use it in GitHub Desktop.
Save erkiziltoprak/47d1871c04111dc9d070e145493dec98 to your computer and use it in GitHub Desktop.
//* Add menu item to header-right menu
add_filter( 'wp_nav_menu_items', 'custom_nav_item', 10, 2 );
function custom_nav_item( $menu, $args ) {
//* make sure we are in the primary menu
if ( ! has_nav_menu != $args->theme_location ) {
return $menu;
}
//* see if a nav extra was already specified with Theme options
if ( genesis_get_option( 'nav_extras' ) ) {
return $menu;
}
//* append your custom code
$menu .= sprintf( '<li class="menu-item">%s</li>', __( '<a href="#" class="search-toggle"><span class="dashicons dashicons-search"></span></a>' ) );
return $menu;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment