Skip to content

Instantly share code, notes, and snippets.

@GaryJones
Forked from studiopress/nav-extras.php
Last active April 30, 2020 15:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save GaryJones/a1a00a4b585695858f96 to your computer and use it in GitHub Desktop.
Save GaryJones/a1a00a4b585695858f96 to your computer and use it in GitHub Desktop.
Add Genesis Primary Nav Extras features in manually.
<?php
// Don't include the above <?php when copying
add_filter( 'wp_nav_menu_items', 'prefix_primary_nav_extras', 10, 2 );
/**
* Filter menu items, appending either a search form or today's date.
*
* @param string $menu HTML string of list items.
* @param stdClass $args Menu arguments.
*
* @return string Amended HTML string of list items.
*/
function prefix_primary_nav_extras( $menu, $args ) {
//* Change 'primary' to 'secondary' to add extras to the secondary navigation menu
if ( 'primary' !== $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