Skip to content

Instantly share code, notes, and snippets.

@freezvd
Forked from jamiemitchell/functions.php
Last active August 29, 2015 14:06
Show Gist options
  • Save freezvd/b4c0125a8561ae1450c1 to your computer and use it in GitHub Desktop.
Save freezvd/b4c0125a8561ae1450c1 to your computer and use it in GitHub Desktop.
<?php
/* Add Extra Code to Primary Menu
------------------------------------------------------------ */
function be_menu_extras($menu, $args) {
$extras = '<li class="right">Your extras go here</li>';
return $menu . $extras;
}
add_filter('wp_nav_menu_primary_items','be_menu_extras', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment