web/wp-content/themes/twentyeleven/sidebar-footer.php
changeset 194 32102edaa81b
equal deleted inserted replaced
193:2f6f6f7551ca 194:32102edaa81b
       
     1 <?php
       
     2 /**
       
     3  * The Footer widget areas.
       
     4  *
       
     5  * @package WordPress
       
     6  * @subpackage Twenty_Eleven
       
     7  * @since Twenty Eleven 1.0
       
     8  */
       
     9 ?>
       
    10 
       
    11 <?php
       
    12 	/* The footer widget area is triggered if any of the areas
       
    13 	 * have widgets. So let's check that first.
       
    14 	 *
       
    15 	 * If none of the sidebars have widgets, then let's bail early.
       
    16 	 */
       
    17 	if (   ! is_active_sidebar( 'sidebar-3'  )
       
    18 		&& ! is_active_sidebar( 'sidebar-4' )
       
    19 		&& ! is_active_sidebar( 'sidebar-5'  )
       
    20 	)
       
    21 		return;
       
    22 	// If we get this far, we have widgets. Let do this.
       
    23 ?>
       
    24 <div id="supplementary" <?php twentyeleven_footer_sidebar_class(); ?>>
       
    25 	<?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
       
    26 	<div id="first" class="widget-area" role="complementary">
       
    27 		<?php dynamic_sidebar( 'sidebar-3' ); ?>
       
    28 	</div><!-- #first .widget-area -->
       
    29 	<?php endif; ?>
       
    30 
       
    31 	<?php if ( is_active_sidebar( 'sidebar-4' ) ) : ?>
       
    32 	<div id="second" class="widget-area" role="complementary">
       
    33 		<?php dynamic_sidebar( 'sidebar-4' ); ?>
       
    34 	</div><!-- #second .widget-area -->
       
    35 	<?php endif; ?>
       
    36 
       
    37 	<?php if ( is_active_sidebar( 'sidebar-5' ) ) : ?>
       
    38 	<div id="third" class="widget-area" role="complementary">
       
    39 		<?php dynamic_sidebar( 'sidebar-5' ); ?>
       
    40 	</div><!-- #third .widget-area -->
       
    41 	<?php endif; ?>
       
    42 </div><!-- #supplementary -->