2013-10-12, 02:10:51
The easy way is to add your menu item(s) at the beginning or end of the nav menu by putting them in your template as extra <li> . So you template would contain
Otherwise you use a plugin
Code:
<nav>
<ul>
<?php get_navigation(return_page_slug()); ?>
<li class="special"><a href="http://www.yourlink" title="Hover Text">Menu Text</a></li>
</ul>
</nav>
Otherwise you use a plugin