Extend the WordPress Menu
as add_filter, how-to, WordPress, wp_list_categories, wp_list_pages, wp_nav_menu, wp_nav_menu_items, wp_page_menu
I have written several posts regarding the use of the wp_nav_menu() function. I have written about its uses, its implementation, and even an older post regarding (some of) the CSS classes it generates. This post continues with an idea for extending the wp_nav_menu() function by adding additional items to the menu list with code versus the user interface found in the Administration Panels, such as automagically adding a self-propagating list of categories.
This idea is not necessarily new but finding an example may be a bit more difficult. Let’s have a look …
First off, there are several sources of information regarding wp_nav_menu() to take into consideration:
- The WordPress codex reference.
- The “core.trac.wordpress.org” reference.
- This web site’s references.
Each of these links will open in a new tab/window for convenience purposes.
Now that we have a list of reading material we should actually take a look at it …
- The first reference leads to the WordPress codex and provides the standard parameters that can be used with wp_nav_menu().
- The next reference and the experience that was offered by Ian Stewart from ThemeShaper.com is the real key to solving this little puzzle.
- The last reference simply leads to the wp_nav_menu() tag archive here.
I would suggest at least having a quick look at those pages before carrying on to the next page, especially the one referencing the wp_nav_menu() function in the “core”, or primary code base of WordPress, as you will find a very relevant comment there.
Let’s start by focusing on the following code snippet as found in the “core” reference:
// Allow plugins to hook into the menu to add their own <li>'s
$items = apply_filters( 'wp_nav_menu_items', $items, $args );
$items = apply_filters( "wp_nav_menu_{$menu->slug}_items", $items, $args );
$nav_menu .= $items;
The beauty of this little snippet is it shows, with the use of the wp_nav_menu_item filter, you can add specific items to the menu output if the end-user has chosen to create a custom menu. Let’s look at an example that will allow you to add a “Home” page link to the beginning of the menu.
If you add the following to your ‘functions.php’ template file it will add a home link to your wp_nav_menu() output:
// Filter wp_nav_menu() to add additional links and other output
function new_nav_menu_items($items) {
$homelink = '<li class="home"><a href="' . home_url( '/' ) . '">' . __('Home') . '</a></li>';
$items = $homelink . $items;
return $items;
}
add_filter( 'wp_nav_menu_items', 'new_nav_menu_items' );
The basic premise of the function is:
- Assign your desired output to a variable
- Concatenate the output variable with the $items variable
- Return the $items variable so it can be used in the filter
- Add the results of the function to wp_nav_menu_items with an add_filter() function
If you wish to use this when a custom menu is not being used just add the following (or similar) filter after the above code:
add_filter( 'wp_list_pages', 'new_nav_menu_items' );
But what if we wanted to add something to the end of the menu output, such as a RSS feed link, or maybe just some random text or a static URL link. Let’s look at the following example which expands upon the code above to do just that.
// Filter wp_nav_menu() to add additional links and other output
function new_nav_menu_items($items) {
$homelink = '<li class="home"><a href="' . home_url( '/' ) . '">' . __('Home') . '</a></li>';
$feedlink = '<li class="feed"><a href="' . get_bloginfo_rss('rss2_url') . '">' . __('RSS') . '</a></li>';
$random_text = '<li class="rainbows"><a href="#">OMG ... Double Rainbows!</a></li>';
$items = $homelink . $items;
$items = $items . $feedlink;
$items = $items . $random_text;
return $items;
}
add_filter( 'wp_list_pages', 'new_nav_menu_items' );
add_filter( 'wp_nav_menu_items', 'new_nav_menu_items' );
There always seems to be some new way to add more uses to the core functions in WordPress and I like to find, explore and write about them. I often implement them in the First Aid Theme, as I have done by using the above example code to add a “Home” link to the menu. On the next page I will leave you with one more example, the one I referred to in the opening paragraph.
Although this was a bit more involved it really did not make that much of a difference in the case of implementing this in a custom menu so without further ado here is the code snippet:
function new_nav_menu_items($items) {
$cat_menu_list = wp_list_categories( 'echo=0&title_li=&child_of=124' );
$items = $items . $cat_menu_list;
return $items;
}
add_filter( 'wp_nav_menu_items', 'new_nav_menu_items' );
If you are trying this at home make back-ups of your files, just in case you want to revert your edits. Your category list hierarchy may need to be noted as well.
The key to this snippet is the wp_list_categories() by default will echo its results to the screen, you will have to set the parameter ‘echo=0′ to turn off this default behavior.
As for using this technique for categories with a non-custom menu I will leave that as an exercise for those looking for a challenge … Enjoy!
- Share this:
- Share
Upgrade wp_page_menu() to wp_nav_menu()
as how-to, WordPress, wp_nav_menu, wp_page_menu
WordPress version 3.0 has been live for a while and a lot of people want to make use of the wp_nav_menu() functionality but they are using one of the older template tags: wp_page_menu(); wp_list_pages(); or, wp_list_categories().
This post will be dealing with function arguments in common between wp_nav_menu() and wp_page_menu(). Follow-up posts will be covering wp_list_pages() and wp_list_categories(). I will not be covering the specific use for each function’s arguments; the idea is to help show how these options correlate to one another.
Let’s start with the full default of wp_nav_menu() 1 explicitly displayed:
wp_nav_menu( array(
'menu' => '',
'container' => 'div',
'container_class' => '',
'container_id' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'depth' => 0,
'walker' => '',
'theme_location' => ''
) );
Followed by the same explicit defaults of wp_page_menu() 2, 3:
wp_page_menu( array(
'sort_column' => 'menu_order, post_title',
'include' => '',
'exclude' => '',
'show_home' => false,
'menu_class' => 'menu',
'echo' => true,
'link_before' => '',
'link_after' => ''
) );
Now onto updating wp_page_menu() to wp_nav_menu(), which turns out to be rather simple.
Here is the break-down of the wp_page_menu() default options from above:
'sort_column'– not used'include'– not used'exclude'– not used'show_home'– not used (see bonus section below)'menu_class'– same as wp_nav_menu()'echo'– same as wp_nav_menu()'link_before'– same as wp_nav_menu()'link_after'– same as wp_nav_menu()
First off ‘sort_column’, ‘include’, and ‘exclude’ are replaced by the end-user’s choices using the UI of wp_nav_menu() found under Appearance | Menu in the dashboard. The balance of the default options are the same in wp_nav_menu(), with the exception of 'show_home' => false which is the “bonus” content.
Upgrading from wp_page_menu() to wp_nav_menu() may be as easy as a simple find and replace operation.
add_theme_support( 'menus' );
- Share this:
- Share
Going Home
as bloginfo, get_bloginfo, WordPress, wp_list_categories, wp_list_pages, wp_page_menu
Examples of adding a home page link to a WordPress theme with code that can be easily copied and pasted.
- Share this:
- Share


