Skip to content

Instantly share code, notes, and snippets.

@jasonglisson
Last active September 14, 2017 12:41
Show Gist options
  • Save jasonglisson/2824e55ccf28d4315bbdb8459810ac74 to your computer and use it in GitHub Desktop.
Save jasonglisson/2824e55ccf28d4315bbdb8459810ac74 to your computer and use it in GitHub Desktop.
Wordpress - Append this to the end of the main menu
function add_last_nav_item($items) {
return $items .= '<li><a href="#myModal" role="button" data-toggle="modal">Contact</a></li>';
}
add_filter('wp_nav_menu_items','add_last_nav_item');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment