Changeset 21886 for trunk/wp-content/themes/twentytwelve/sidebar-front.php
- Timestamp:
- 09/18/2012 05:28:36 PM (13 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentytwelve/sidebar-front.php
r21884 r21886 1 1 <?php 2 2 /** 3 * The sidebar containing the homepage widget areas.3 * The sidebar containing the front page widget areas. 4 4 * 5 5 * If no active widgets in either sidebar, they will be hidden completely. … … 11 11 12 12 /* 13 * The homepage widget area is triggered if any of the areas13 * The front page widget area is triggered if any of the areas 14 14 * have widgets. So let's check that first. 15 15 * … … 21 21 // If we get this far, we have widgets. Let do this. 22 22 ?> 23 <div id="secondary" <?php twentytwelve_ homepage_sidebar_class(); ?> role="complementary">23 <div id="secondary" <?php twentytwelve_frontpage_sidebar_class(); ?> role="complementary"> 24 24 <?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?> 25 <div class="first home-widgets">25 <div class="first front-widgets"> 26 26 <?php dynamic_sidebar( 'sidebar-2' ); ?> 27 27 </div><!-- .first --> … … 29 29 30 30 <?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?> 31 <div class="second home-widgets">31 <div class="second front-widgets"> 32 32 <?php dynamic_sidebar( 'sidebar-3' ); ?> 33 33 </div><!-- .second -->
Note: See TracChangeset
for help on using the changeset viewer.