59 lines
2.3 KiB
PHP
59 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Footer Layout 7
|
|
*
|
|
* @package Astra Addon
|
|
*/
|
|
|
|
/**
|
|
* Hide advanced footer markup if:
|
|
*
|
|
* - User is not logged in. [AND]
|
|
* - All widgets are not active.
|
|
*/
|
|
if ( ! is_user_logged_in() ) {
|
|
if (
|
|
! is_active_sidebar( 'advanced-footer-widget-1' ) &&
|
|
! is_active_sidebar( 'advanced-footer-widget-2' ) &&
|
|
! is_active_sidebar( 'advanced-footer-widget-3' ) &&
|
|
! is_active_sidebar( 'advanced-footer-widget-4' )
|
|
) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
$astra_addon_footer_layout_classes[] = 'footer-adv';
|
|
$astra_addon_footer_layout_classes[] = 'footer-adv-layout-7';
|
|
$astra_addon_footer_layout_classes = implode( ' ', $astra_addon_footer_layout_classes );
|
|
?>
|
|
|
|
<div class="<?php echo esc_attr( $astra_addon_footer_layout_classes ); ?>">
|
|
<div class="footer-adv-overlay">
|
|
<div class="ast-container">
|
|
<?php do_action( 'astra_footer_inside_container_top' ); ?>
|
|
<div class="ast-row">
|
|
<div class="<?php echo esc_html( apply_filters( 'astra_attr_ast-layout-1-grid_output', 'ast-layout-1-grid' ) ); ?> footer-adv-widget footer-adv-widget-1">
|
|
<?php Astra_Ext_Adv_Footer_Markup::get_sidebar( 'advanced-footer-widget-1' ); ?>
|
|
</div>
|
|
</div><!-- .ast-row -->
|
|
|
|
<div class="ast-row">
|
|
<div class="<?php echo esc_html( apply_filters( 'astra_attr_ast-layout-2-grid_output', 'ast-layout-2-grid' ) ); ?> footer-adv-widget footer-adv-widget-2">
|
|
<?php Astra_Ext_Adv_Footer_Markup::get_sidebar( 'advanced-footer-widget-2' ); ?>
|
|
</div>
|
|
<div class="<?php echo esc_html( apply_filters( 'astra_attr_ast-layout-2-grid_output', 'ast-layout-2-grid' ) ); ?>">
|
|
|
|
<div class="ast-row">
|
|
<div class="<?php echo esc_html( apply_filters( 'astra_attr_ast-layout-2-grid_output', 'ast-layout-2-grid' ) ); ?> footer-adv-widget footer-adv-widget-3">
|
|
<?php Astra_Ext_Adv_Footer_Markup::get_sidebar( 'advanced-footer-widget-3' ); ?>
|
|
</div>
|
|
<div class="<?php echo esc_html( apply_filters( 'astra_attr_ast-layout-2-grid_output', 'ast-layout-2-grid' ) ); ?> footer-adv-widget footer-adv-widget-4">
|
|
<?php Astra_Ext_Adv_Footer_Markup::get_sidebar( 'advanced-footer-widget-4' ); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div><!-- .ast-row -->
|
|
<?php do_action( 'astra_footer_inside_container_bottom' ); ?>
|
|
</div><!-- .ast-container -->
|
|
</div><!-- .footer-adv-overlay-->
|
|
</div><!-- .ast-theme-footer .footer-adv-layout-6 -->
|