Search

How to Add a Custom Menu Item to the Navigation Menu in Genesis

Listen to this article
Genesis-Navigation-Menu
Navigation Menu in Genesis

You know what it’s like, when you’re travelling. You’re new to the place, so you look around, hunt for signboards, which could basically guide you to the next location. It’s the same for new visitors on your website. They are exploring too. So they look for navigation menus, to direct them. And the primary reason your site visitors look for the navigation menu, is because they know, that main pages of your site, can be easily accessed using such menus. This is an important reason why many clients, want us to customize the look and contents of the navigation menus, on their site.

For example, an event management site owner, wanted us to add a popular events link, directly in the navigation menu. Makes sense. Potential ticket buyers would have a quick link to upcoming events. Having such links in the navigation menu, saves buyers the time of having to go back to the homepage, to locate them.

Another example, would be, if you had to add say an empty cart timer, on an e-Commerce website. This timer could be added in the navigation menu, as an indication to the customer, that his shopping cart is about to expire. The navigation menu is an apt location for such a functionality because it is fixed across the entire site.

Customizing your navigation menu, could involve (like explained in our previous article) adding images or icons, to adding content elements. In this article, I’ll be explaining to you, how you can add content elements to your navigation Menu in Genesis.

Let’s get right to it!

[space]

Add Content Elements to Genesis Navigation Menu

As you would know, the navigation menu in Genesis (or in WordPress) is basically a list of items. So, adding another element, would be appending an item to this list. For this, WordPress provides a filter hook ‘wp_nav_menu_items’. This hook allows you to alter the list content before printing it on the website. So here’s what we’ll do, we’ll use this hook and add our own content element to the menu items.

As an example, let’s try adding the WordPress search form, in the Primary navigation menu, and the current date, in the Secondary navigation menu. To achieve this, we’ll have to add the below code in functions.php of your Genesis child theme.

add_filter( 'wp_nav_menu_items', 'wdm_add_menu_items', 10, 2 );

function wdm_add_menu_items( $menu, $args ) {
    // check if it is the 'primary' navigation menu
    if ( 'primary' === $args->theme_location )
    {
      // add the search form
      ob_start();
      get_search_form();
      $search = ob_get_clean();
      $menu  .= '<li class="right search">' . $search . '</li>';
    }

    // else check if it is the 'secondary' navigation menu
    else if ( 'secondary' === $args->theme_location )
    {
      // add today’s date
      $menu .= '<li class="right date">' . date_i18n( get_option( 'date_format' ) ) . '</li>';
    }
    return $menu;
}

So, I’ll explain what happens here. In the above code, wdm_add_menu_items function will be called before the navigation menu is displayed. For the primary navigation menu, we will fetch the search form (which could be WordPress’ default search form, or the search form provided by your theme). This form will be appended to the menu, as a list item.

In case the navigation menu in question is the secondary navigation menu, the current date will be fetched, and added to the list. Here’s the result below!

Genesis-Custom-Navigation-Menu
Navigation Menu with Custom Elements

[space]

Since WordPress, and in turn Genesis provides simple to use filters to change the navigation menu items, or to add additional items, we can easily add such content elements to the navigation menu. But adding too many elements, could clutter your menu, and you would be better off styling it differently, like adding a Mega-Menu, with the items instead.

So! Do let me know your thoughts about this solution, or ask me your doubts and questions, using the comment section below!

Aruna Vadlamani

Aruna Vadlamani

One Response

  1. Hi Aruna,

    A simple and clear solution. Thank you.
    Do you know what to change when there is no primary menu?
    My menu in the theme ‘Hello Pro’ is in the Header Right with a custom menu widget?

    Have a nice day,
    Jon

Leave a Reply

Your email address will not be published. Required fields are marked *

Get The Latest Updates

Subscribe to our Newsletter

A key to unlock the world of open-source. We promise not to spam your inbox.

Suggested Reads

Join our 55,000+ Subscribers

    The Wisdm Digest delivers all the latest news, and resources from the world of open-source businesses to your inbox.

    Suggested Reads

    WordPress Tips & Tricks
    Ketan Vyawahare

    How to Make Responsive Tables using CSS without Tag Read More »