File "footer.php"

Full Path: /home/ubunrgit/public_html/wp-content/themes/unicoach/footer.php
File size: 908 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * The template for Footer rendering
 *
 * Contains the closing of the #main div and all content after.
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package unicoach
 * @author WebGeniusLab <[email protected]>
 * @since 1.0.0
 */
echo '</main>';

/**
* Elementor Pro Footer Render
*
* @since 1.0.0
*/
do_action('unicoach/elementor_pro/footer');

/**
* Check WGL footer active option
*
* @since 1.0.0
*/
$footer = apply_filters('unicoach/footer/enable', true);
$footer_switch = $footer['footer_switch'] ?? '';
$copyright_switch = $footer['copyright_switch'] ?? '';
if ($footer_switch || $copyright_switch) {
    get_template_part('templates/section', 'footer');
}

/**
* Runs after main
*
* @since 1.0.0
*/
do_action('unicoach/after_main_content');

wp_footer();

echo '</body>';
echo '</html>';