Changeset 21620
- Timestamp:
- 08/25/2012 05:32:06 PM (13 years ago)
- Location:
- trunk/wp-content/themes/twentytwelve
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentytwelve/functions.php
r21618 r21620 373 373 $background_color = get_background_color(); 374 374 375 if ( ! is_active_sidebar( 'sidebar-1') || is_page_template( 'full-width-page.php' ) )375 if ( ! is_active_sidebar( 1 ) || is_page_template( 'full-width-page.php' ) ) 376 376 $classes[] = 'full-width'; 377 377 … … 395 395 */ 396 396 function twentytwelve_content_width() { 397 if ( is_page_template( 'full-width-page.php' ) || is_attachment() || ! is_active_sidebar( 'sidebar-1') ) {397 if ( is_page_template( 'full-width-page.php' ) || is_attachment() || ! is_active_sidebar( 1 ) ) { 398 398 global $content_width; 399 399 $content_width = 960; -
trunk/wp-content/themes/twentytwelve/sidebar-home.php
r21618 r21620 24 24 <?php if ( is_active_sidebar( 2 ) ) : ?> 25 25 <div class="first home-widgets"> 26 <?php dynamic_sidebar( 'sidebar-2'); ?>26 <?php dynamic_sidebar( 2 ); ?> 27 27 </div><!-- .first --> 28 28 <?php endif; ?> … … 30 30 <?php if ( is_active_sidebar( 3 ) ) : ?> 31 31 <div class="second home-widgets"> 32 <?php dynamic_sidebar( 'sidebar-3'); ?>32 <?php dynamic_sidebar( 3 ); ?> 33 33 </div><!-- .second --> 34 34 <?php endif; ?> -
trunk/wp-content/themes/twentytwelve/sidebar.php
r21618 r21620 11 11 ?> 12 12 13 <?php if ( is_active_sidebar( 'sidebar-1') ) : ?>13 <?php if ( is_active_sidebar( 1 ) ) : ?> 14 14 <div id="secondary" class="widget-area" role="complementary"> 15 <?php dynamic_sidebar( 'sidebar-1'); ?>15 <?php dynamic_sidebar( 1 ); ?> 16 16 </div><!-- #secondary --> 17 17 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.