File "nav.inc.php"
Full path: /home5/hallettsvillepow/public_html/wp-content/themes/flexsqueeze151/includes/nav.inc.php
File
size: 0.9 KB (920 B bytes)
MIME-type: text/html; charset=us-ascii
Charset: utf-8
Download Open Edit Advanced Editor Back
<div id="navwrap">
<div id="nav" style="clear:both;">
<?php if ( function_exists('wp_nav_menu') ) {
echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a$2><span>$3</span></a>', wp_nav_menu( array('theme_location' => 'primary-menu', 'echo' => '0', 'menu_class' => 'sf-menu', 'fallback_cb' => 'flex_menu')));
} else { ?>
<ul class="sf-menu">
<?php if (get_option('flex_nav_home') == "yes") { ?>
<li<?php if (is_front_page()) { echo ' class="current_page_item"'; } ?>><a href="<?php echo get_option('home'); ?>"><span><?php echo get_option('flex_nav_hometxt'); ?></span></a></li>
<?php } ?>
<?php $exclude = get_option('flex_nav_exclude'); echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a$2><span>$3</span></a>', wp_list_pages('echo=0&orderby=name&exclude=' . $exclude . '&title_li=')); ?>
</ul>
<?php } ?>
<div class="clearer"></div>
</div>
</div>