'info',
'Our Story' => 'our-story',
'Wedding Party' => 'wedding-party',
'Photos' => 'photos',
'Blog' => 'blog'
); //Build out an array of nav items Link Title => Relative URL
?>
$link_url) {
$absolute_link_url = $wedding_url . '/' . $link_url . '/'; //Make an absolute URL out of the current $link_url as we loop through the array.
if( $current_url == $absolute_link_url) {
$active_link_class = ' class="active" ';
}
else {
$active_link_class = '';
}
?>