WordPress :: Extra Theme :: Mega Menus :: Add a "SEE ALL" Link
<script>
(function($) {
$(window).load(function() {
setTimeout(function() {
var $megamenu = $('.mega-menu-featured');
if ($megamenu.length) {
var $recent = $megamenu.find('.recent-list');
if ($recent.length) {
var $more = $('<li class="menu-item"><a href="#" class="title">SEE MORE</a>');
$more.appendTo($recent.parents('.submenu'));
}
}
}, 2000);
});
})(jQuery);
</script>