File: /home/bristolfilton.co.uk/public_html/wp-content/themes/newsmag/footer.php
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Newsmag
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php get_sidebar( 'footer' ) ?>
<?php
if ( get_theme_mod( 'newsmag_after_footer_enable', false ) ) {
get_template_part( 'template-parts/after-footer' );
}
?>
<?php $go_top_enabled = get_theme_mod( 'newsmag_enable_go_top', true ); ?>
<?php if ( $go_top_enabled ): ?>
<a href="#0" id="back-to-top" class="back-to-top">
<span class="fa fa-angle-up"></span>
</a>
<?php endif; ?>
<?php
$copyright_area = get_theme_mod( 'newsmag_enable_copyright', true );
$copyright_menu = has_nav_menu( 'copyright' );
?>
<div class="site-info">
<div class="container">
<div class="row">
<div class="<?php echo $copyright_menu ? 'col-lg-7 col-sm-8' : 'col-sm-12'; ?>">
<?php if ( $copyright_area ): ?>
<?php
echo wp_kses_post( get_theme_mod( 'newsmag_copyright_contents', '© ' . date( "Y" ) . ' <a href="https://www.machothemes.com/newsmag-lite/">Newsmag</a>. All rights reserved.' ) );
?>
<?php endif; ?>
<?php echo __( 'Working with <a target="_blank" href="http://rfc.org.uk/" rel="dofollow" title="Professional WordPress Themes">RFC</a>', 'newsmag' ) ?>
</div>
<?php
if ( has_nav_menu( 'copyright' ) ) {
?>
<div class="col-lg-5 col-sm-4 text-right">
<?php
wp_nav_menu( array(
'theme_location' => 'copyright',
'menu_id' => 'copyright-menu',
'items_wrap' => '<ul id="%1$s" class="copyright-menu %2$s">%3$s</ul>'
) );
?>
</div>
<?php } ?>
</div>
</div>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>