Skip to content

Instantly share code, notes, and snippets.

@rajucs
Created November 19, 2021 02:56
Show Gist options
  • Save rajucs/2ae7a7b7724553e70d907a73fb5e0dd3 to your computer and use it in GitHub Desktop.
Save rajucs/2ae7a7b7724553e70d907a73fb5e0dd3 to your computer and use it in GitHub Desktop.
/**
* Hardcodes shop item in navigation
* @param string $items HTML with navigation items
* @param object $args navigation menu arguments
* @return string all navigation items HTML
*/
function new_nav_menu_items($items, $args) {
if($args->theme_location == 'main-menu'){
$shop_item = '<li class="spec"><a href="#" title="title">title</a></li>';
$items = $items . $shop_item;
}
return $items;
}
add_filter('wp_nav_menu_items', 'new_nav_menu_items', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment