BossBey File Manager
PHP:
7.3.31-1~deb10u1
OS:
Linux
User:
www-data
Root
/
home
/
www
/
apinch
/
wp-content
/
catch-responsive
📤 Upload
📝 New File
📁 New Folder
Close
Editing: sidebar-footer.php
<?php /** * The Footer Sidebar containing the footer widget areas * * @package Catch Themes * @subpackage Catch Responsive * @since Catch Responsive 1.0 */ /* The footer widget area is triggered if any of the areas * have widgets. So let's check that first. * * If none of the sidebars have widgets, then let's bail early. */ if ( ! is_active_sidebar( 'footer-1' ) && ! is_active_sidebar( 'footer-2' ) && ! is_active_sidebar( 'footer-3' ) && ! is_active_sidebar( 'footer-4' ) ) { return; } // If we get this far, we have widgets. Let do this. ?> <div id="supplementary" <?php catchresponsive_footer_sidebar_class(); ?>> <div class="wrapper"> <?php if ( is_active_sidebar( 'footer-1' ) ) : ?> <div id="first" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'footer-1' ); ?> </div><!-- #first .widget-area --> <?php endif; ?> <?php if ( is_active_sidebar( 'footer-2' ) ) : ?> <div id="second" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'footer-2' ); ?> </div><!-- #second .widget-area --> <?php endif; ?> <?php if ( is_active_sidebar( 'footer-3' ) ) : ?> <div id="third" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'footer-3' ); ?> </div><!-- #third .widget-area --> <?php endif; ?> </div> <!-- .wrapper --> </div><!-- #supplementary -->
Save
Cancel