????

Your IP : 216.73.216.121


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/footer/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/footer/footer-bottom.php

<?php
/**
 * Footer bottom content
 *
 * @package Wanderfuls WordPress Theme
 * @subpackage Partials
 * @version 3.0.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Get copyright info
$copyright = tb_get_mod( 'footer_copyright_text', 'Copyright <a href="#">Your Business LLC.</a> - All Rights Reserved' );

// WPML translations
$copyright = tb_translate_theme_mod( 'footer_copyright_text', $copyright ); ?>

<div id="footer-bottom" class="clr"<?php tb_schema_markup( 'footer_bottom' ); ?>>

	<div id="footer-bottom-inner" class="container clr">

		

		<?php
		// Get footer menu location and apply filters for child theming
		$menu_location = 'footer_menu';
		$menu_location = apply_filters( 'tb_footer_menu_location', $menu_location);

		// Display footer bottom menu if location is defined
		if ( has_nav_menu( $menu_location ) ) : ?>

			<div id="footer-bottom-menu" class="clr">
				<?php
				// Display footer menu
				wp_nav_menu( array(
					'theme_location' => $menu_location,
					'sort_column'    => 'menu_order',
					'fallback_cb'    => false,
				) ); ?>

			</div><!-- #footer-bottom-menu -->

		<?php endif; ?>
<?php
		// Display copyright info
		if ( $copyright ) : ?>

			<div id="copyright" class="clr" role="contentinfo">
				<?php echo do_shortcode( $copyright ); ?>
			</div><!-- #copyright -->

		<?php endif; ?>
	</div><!-- #footer-bottom-inner -->

</div><!-- #footer-bottom -->