Description
Within the nav menu, just before </ul>.
Source Position
<ul class="menu"> <li class="tab tab-home"><a href="http://diythemes.com/answers" rel="nofollow">Home</a></li> <!-- thesis_hook_last_nav_item --> </ul>
Default Functions
There are no default functions added to this hook.
Example
function posts_nav() {
echo '<li class="tab tab-recent"><a href="">Blog</a><ul>';
wp_get_archives('title_li=&type=postbypost&limit=10');
echo '</ul></li>';
}
add_action('thesis_hook_last_nav_item','posts_nav');