Skip to content

Instantly share code, notes, and snippets.

@purcebr
Last active September 3, 2015 20:32
Show Gist options
  • Save purcebr/f6f260aeddf0894fd1e5 to your computer and use it in GitHub Desktop.
Save purcebr/f6f260aeddf0894fd1e5 to your computer and use it in GitHub Desktop.
Add custom item to the end of a menu
function add_member_link_item_to_menu( $items, $args ){
//change theme location with your them location name
if( is_admin() || $args->theme_location != 'primary-right-menu' )
return $items;
$link = '<a href="#">Member Area</a>';
return $items .= '<li id="members-only-link" class="menu-item menu-type-link">'. $link . '</li>';
}
add_filter( 'wp_nav_menu_items', 'add_member_link_item_to_menu', 50, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment