Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created May 11, 2015 20:47
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 braddalton/428545d1431fcaf8152b to your computer and use it in GitHub Desktop.
Save braddalton/428545d1431fcaf8152b to your computer and use it in GitHub Desktop.
add_filter( 'wp_nav_menu_items', 'theme_menu_extras', 10, 2 );
function theme_menu_extras( $menu, $args ) {
if ( 'secondary' !== $args->theme_location )
return $menu;
//* Uncomment this block to add a search form to the navigation menu
/*
ob_start();
get_search_form();
$search = ob_get_clean();
$menu .= '<li class="right search">' . $search . '</li>';
*/
//* Uncomment this block to add the date to the navigation menu
/*
$menu .= '<li class="right date">' . date_i18n( get_option( 'date_format' ) ) . '</li>';
*/
return $menu;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment