????
| Current Path : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/footer/ |
| Current File : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/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 -->