File: /var/www/Application/wp-content/themes/zoomy/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 sefu
*/
/**
* Theme Options
*/
$opt = get_option( 'zoomy_opt' );
/**
* Page Options
*/
$footer_visibility = function_exists( 'get_field' ) ? get_field( 'footer_visibility' ) : '1';
$footer_visibility = isset( $footer_visibility ) ? $footer_visibility : '1'; ?>
</main>
<!----- Page Wrapper End ------>
<?php
if ( $footer_visibility == '1' ) {
get_template_part( 'template-parts/footers/footer', 'normal' );
}
wp_footer();
?>
</body>
</html>