Make WordPress Core


Ignore:
Timestamp:
08/25/2012 05:32:06 PM (14 years ago)
Author:
lancewillett
Message:

Twenty Twelve: consistently call sidebar areas with just the ID value, props obenland. See #21685.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentytwelve/sidebar.php

    r21618 r21620  
    1111?>
    1212
    13     <?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
     13    <?php if ( is_active_sidebar( 1 ) ) : ?>
    1414        <div id="secondary" class="widget-area" role="complementary">
    15             <?php dynamic_sidebar( 'sidebar-1' ); ?>
     15            <?php dynamic_sidebar( 1 ); ?>
    1616        </div><!-- #secondary -->
    1717    <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.