<?php global $cyarb_opt; /** * The template for displaying the footer * @package cyarb */ ?> <?php if( function_exists('acf_add_options_page') && get_field('choose_footer_style') == 1 ) { get_template_part('template-parts/footer/style','one'); } elseif( function_exists('acf_add_options_page') && get_field('choose_footer_style') == 3 ) { get_template_part('template-parts/footer/style','three'); } else { get_template_part('template-parts/footer/style','two'); } ?> <!-- scroll-top --> <?php if( isset($cyarb_opt['enable_back_to_top'] ) && $cyarb_opt['enable_back_to_top'] != false ){ ?> <div class="go-top"><i class="lni lni-arrow-up"></i></div> <?php } ?> <!-- .end scroll-top --> <?php wp_footer(); ?> </body> </html>