File "style-three.php"
Full Path: /home/flipjqml/onlinebetsolution.com/wp-content/themes/cyarb/template-parts/footer/style-three.php
File size: 2.86 KB
MIME-type: text/x-php
Charset: utf-8
<?php global $cyarb_opt;
/**
* The template for displaying the footer
* @package cyarb
*/
// Footer Widget
if(!is_active_sidebar( 'cyarb_footer_one' ) && !is_active_sidebar( 'cyarb_footer_two' ) && !is_active_sidebar( 'cyarb_footer_three' ) && !is_active_sidebar( 'cyarb_footer_four' ) ) {
$footer_padding = 'footer-top-padding';
} else {
$footer_padding = '';
}
$footer_col = isset( $cyarb_opt['footer_col']) ? $cyarb_opt['footer_col'] : 'column-4';
if( $footer_col == 'column-2'):
$col_cls = 'col-lg-6 col-sm-6';
elseif( $footer_col == 'column-4'):
$col_cls = 'col-lg-3 col-sm-6';
else:
$col_cls = 'col-lg-4 col-sm-6';
endif;
$footer_shape = isset( $cyarb_opt['cyarb_footer_image_shape']) ? $cyarb_opt['cyarb_footer_image_shape'] : 1;
$banner_bg = isset( $cyarb_opt['cyarb_footer_bg']['url']) ? $cyarb_opt['cyarb_footer_bg']['url'] : '';
$footer_shape1 = isset( $cyarb_opt['cyarb_footer_shape1']['url']) ? $cyarb_opt['cyarb_footer_shape1']['url'] : '';
$footer_shape2 = isset( $cyarb_opt['cyarb_footer_shape2']['url']) ? $cyarb_opt['cyarb_footer_shape2']['url'] : '';
?>
<footer class="footer-area footer-style-two-with-color <?php echo esc_attr( $footer_padding ); ?>">
<div class="container">
<div class="row justify-content-center">
<?php if ( is_active_sidebar( 'cyarb_footer_one' ) ) { ?>
<div class="<?php echo esc_attr( $col_cls ); ?>">
<?php dynamic_sidebar('cyarb_footer_one'); ?>
</div>
<?php } ?>
<?php if ( is_active_sidebar( 'cyarb_footer_two' ) ) { ?>
<div class="<?php echo esc_attr( $col_cls ); ?>">
<?php dynamic_sidebar('cyarb_footer_two'); ?>
</div>
<?php } ?>
<?php if ( is_active_sidebar( 'cyarb_footer_three' ) ) { ?>
<div class="<?php echo esc_attr( $col_cls ); ?>">
<?php dynamic_sidebar('cyarb_footer_three'); ?>
</div>
<?php } ?>
<?php if ( is_active_sidebar( 'cyarb_footer_four' ) ) { ?>
<div class="<?php echo esc_attr( $col_cls ); ?>">
<?php dynamic_sidebar('cyarb_footer_four'); ?>
</div>
<?php } ?>
</div>
</div>
<div class="copyright-area copyright-style-two-with-color <?php echo esc_attr( $footer_padding ); ?>">
<?php if(isset( $cyarb_opt['cyarb_footer_copyright_text'] ) && $cyarb_opt['cyarb_footer_copyright_text'] !='') { ?>
<p><?php echo wp_kses_post( $cyarb_opt['cyarb_footer_copyright_text'] ) ; ?> </p>
<?php } else { ?>
<p> <?php echo esc_html__( '©Copyright 2021 All Rights Reserved.','cyarb' ) ; ?> </p>
<?php } ?>
</div>
<?php if( $footer_shape == 1 && $footer_shape1 != '' ) : ?>
<div class="footer-shape-1"><img src="<?php echo esc_url( $footer_shape1 ); ?>" alt="<?php the_title_attribute(); ?>"></div>
<?php endif; ?>
<?php if( $footer_shape == 1 && $footer_shape2 != '' ) : ?>
<div class="footer-shape-2"><img src="<?php echo esc_url( $footer_shape2 ); ?>" alt="<?php the_title_attribute(); ?>"></div>
<?php endif; ?>
</footer>