File: /home/httpd/html/DELETE/wp-content/themes/schema-lite/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 Schema Lite
*/
$disable_footer = '';
if ( is_singular() ) {
$disable_footer = get_post_meta( get_the_ID(), '_disable_footer', true );
}
if ( empty( $disable_footer ) ) {
?>
<footer id="site-footer" role="contentinfo" itemscope itemtype="http://schema.org/WPFooter">
<?php
// Elementor `footer` location.
if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'footer' ) ) {
if ( is_active_sidebar( 'footer-first' ) || is_active_sidebar( 'footer-second' ) || is_active_sidebar( 'footer-third' ) ) {
?>
<div class="container">
<div class="footer-widgets">
<div class="footer-widget">
<?php if ( is_active_sidebar( 'footer-first' ) ) : ?>
<?php dynamic_sidebar( 'footer-first' ); ?>
<?php endif; ?>
</div>
<div class="footer-widget">
<?php if ( is_active_sidebar( 'footer-second' ) ) : ?>
<?php dynamic_sidebar( 'footer-second' ); ?>
<?php endif; ?>
</div>
<div class="footer-widget last">
<?php if ( is_active_sidebar( 'footer-third' ) ) : ?>
<?php dynamic_sidebar( 'footer-third' ); ?>
<?php endif; ?>
</div>
</div>
</div>
<?php
}
schema_lite_copyrights_credit();
}
?>
</footer><!-- #site-footer -->
<?php
}
wp_footer();
?>
</body>
</html>