File: /var/www/vhosts/miroglu.net/httpdocs/wp-content/themes/the-landscaper/footer.php
<p style="display: none;"><a href="2">2</a></p>
<p style="display: none;"><a href="2">2</a></p>
<p style="display: none;"><a href="2">2</a></p>
<?php
/**
* Footer Template Part
*
* @package the-landscaper-wp
*/
// Set the footer on 4 columns
$main_footer_columns = (int) get_theme_mod( 'qt_footer_columns', 4 );
// Get the bottom footer text settings
$bottom_footer_left = get_theme_mod( 'qt_footerbottom_textleft' );
$bottom_footer_middle = get_theme_mod( 'qt_footerbottom_textmiddle' );
$bottom_footer_right = get_theme_mod( 'qt_footerbottom_textright' );
?>
<footer class="footer">
<?php if ( $main_footer_columns > 0 && is_active_sidebar( 'main-footer' ) ) : ?>
<div class="main-footer">
<div class="container">
<div class="row">
<?php dynamic_sidebar( 'main-footer' ); ?>
</div>
</div>
</div>
<?php endif; ?>
<?php if ( $bottom_footer_left || $bottom_footer_middle || $bottom_footer_right || is_active_sidebar( 'bottom-footer-left' ) || is_active_sidebar( 'bottom-footer-middle' ) || is_active_sidebar( 'bottom-footer-right' ) ) : ?>
<div class="bottom-footer">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4">
<div class="bottom-left">
<?php if ( $bottom_footer_left ) : ?>
<p><?php echo wp_kses_post( do_shortcode( $bottom_footer_left ) ); ?></p>
<?php else : ?>
<?php dynamic_sidebar( 'bottom-footer-left' ); ?>
<?php endif; ?>
</div>
</div>
<div class="col-xs-12 col-md-4">
<div class="bottom-middle">
<?php if ( $bottom_footer_middle ) : ?>
<p><?php echo wp_kses_post( do_shortcode( $bottom_footer_middle ) ); ?></p>
<?php else : ?>
<?php dynamic_sidebar( 'bottom-footer-middle' ); ?>
<?php endif; ?>
</div>
</div>
<div class="col-xs-12 col-md-4">
<div class="bottom-right">
<?php if ( $bottom_footer_right ) : ?>
<p><?php echo wp_kses_post( do_shortcode( $bottom_footer_right ) ); ?></p>
<?php else : ?>
<?php dynamic_sidebar( 'bottom-footer-right' ); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if ( 'hide' !== get_theme_mod( 'qt_scroll_to_top_button', 'show' ) ) : ?>
<span class="scrollToTop">
<i class="fas fa-angle-up"></i>
</span>
<?php endif; ?>
</footer>
</div><!-- end layout boxed wrapper -->
<?php wp_footer(); ?>
</body>
</html>