Skip to content

Instantly share code, notes, and snippets.

@alexx855
Created April 26, 2017 14:09
Show Gist options
  • Save alexx855/53f99fbb33fbba5aeb8487c76b8705ef to your computer and use it in GitHub Desktop.
Save alexx855/53f99fbb33fbba5aeb8487c76b8705ef to your computer and use it in GitHub Desktop.
How to Add Custom Items to Specific WordPress Menus
<?php
add_filter( 'wp_nav_menu_items', 'your_custom_menu_item', 10, 2 );
function your_custom_menu_item ( $items, $args ) {
if (is_single() && $args->theme_location == 'primary') {
$items .= '<li>Show whatever</li>';
}
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment