Ticket #23644: 23644.3.diff
File 23644.3.diff, 5.4 KB (added by , 11 years ago) |
---|
-
wp-content/themes/twentythirteen/sidebar-main.php
1 <?php 2 /** 3 * The sidebar containing the footer widget area. 4 * 5 * If no active widgets in this sidebar, it will be hidden completely. 6 * 7 * @package WordPress 8 * @subpackage Twenty_Thirteen 9 * @since Twenty Thirteen 1.0 10 */ 11 12 if ( is_active_sidebar( 'sidebar-1' ) ) : ?> 13 <div id="secondary" class="sidebar-container" role="complementary"> 14 <div class="widget-area"> 15 <?php dynamic_sidebar( 'sidebar-1' ); ?> 16 </div> 17 </div><!-- #secondary --> 18 <?php endif; ?> 19 No newline at end of file -
wp-content/themes/twentythirteen/footer.php
Property changes on: wp-content/themes/twentythirteen/sidebar-main.php ___________________________________________________________________ Added: svn:eol-style + native
13 13 14 14 </div><!-- #main --> 15 15 <footer id="colophon" class="site-footer" role="contentinfo"> 16 <?php get_sidebar( ' footer' ); ?>16 <?php get_sidebar( 'main' ); ?> 17 17 18 18 <div class="site-info"> 19 19 <?php do_action( 'twentythirteen_credits' ); ?> -
wp-content/themes/twentythirteen/js/functions.js
92 92 if ( $.isFunction( $.fn.masonry ) ) { 93 93 var columnWidth = $( 'body' ).is( '.sidebar' ) ? 228 : 245; 94 94 95 $( '# tertiary .widget-area' ).masonry( {95 $( '#secondary .widget-area' ).masonry( { 96 96 itemSelector: '.widget', 97 97 columnWidth: columnWidth, 98 98 gutterWidth: 20 -
wp-content/themes/twentythirteen/sidebar-footer.php
1 <?php2 /**3 * The sidebar containing the footer widget area.4 *5 * If no active widgets in this sidebar, it will be hidden completely.6 *7 * @package WordPress8 * @subpackage Twenty_Thirteen9 * @since Twenty Thirteen 1.010 */11 12 if ( is_active_sidebar( 'sidebar-2' ) ) : ?>13 <div id="tertiary" class="sidebar-container" role="complementary">14 <div class="widget-area">15 <?php dynamic_sidebar( 'sidebar-2' ); ?>16 </div>17 </div><!-- #tertiary -->18 <?php endif; ?>19 No newline at end of file -
wp-content/themes/twentythirteen/functions.php
169 169 wp_enqueue_script( 'comment-reply' ); 170 170 171 171 // Adds Masonry to handle vertical alignment of footer widgets. 172 if ( is_active_sidebar( 'sidebar- 2' ) )172 if ( is_active_sidebar( 'sidebar-1' ) ) 173 173 wp_enqueue_script( 'jquery-masonry' ); 174 174 175 175 // Loads JavaScript file with functionality specific to Twenty Thirteen. … … 225 225 */ 226 226 function twentythirteen_widgets_init() { 227 227 register_sidebar( array( 228 'name' => __( ' Sidebar', 'twentythirteen' ),228 'name' => __( 'Main Widget Area', 'twentythirteen' ), 229 229 'id' => 'sidebar-1', 230 'description' => __( 'Appears on posts and pages', 'twentythirteen' ),230 'description' => __( 'Appears in the footer section of the site', 'twentythirteen' ), 231 231 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 232 232 'after_widget' => '</aside>', 233 233 'before_title' => '<h3 class="widget-title">', … … 235 235 ) ); 236 236 237 237 register_sidebar( array( 238 'name' => __( ' FooterWidget Area', 'twentythirteen' ),238 'name' => __( 'Secondary Widget Area', 'twentythirteen' ), 239 239 'id' => 'sidebar-2', 240 'description' => __( 'Appears in the footer section of the site', 'twentythirteen' ),240 'description' => __( 'Appears on posts and pages', 'twentythirteen' ), 241 241 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 242 242 'after_widget' => '</aside>', 243 243 'before_title' => '<h3 class="widget-title">', -
wp-content/themes/twentythirteen/sidebar.php
1 1 <?php 2 2 /** 3 * The sidebar containing the main widget area.3 * The sidebar containing the secondary widget area, displays on posts and pages. 4 4 * 5 5 * If no active widgets in this sidebar, it will be hidden completely. 6 6 * … … 9 9 * @since Twenty Thirteen 1.0 10 10 */ 11 11 12 if ( is_active_sidebar( 'sidebar- 1' ) ) : ?>13 <div id=" secondary" class="sidebar-container" role="complementary">12 if ( is_active_sidebar( 'sidebar-2' ) ) : ?> 13 <div id="tertiary" class="sidebar-container" role="complementary"> 14 14 <div class="sidebar-inner"> 15 15 <div class="widget-area"> 16 <?php dynamic_sidebar( 'sidebar- 1' ); ?>16 <?php dynamic_sidebar( 'sidebar-2' ); ?> 17 17 </div> 18 18 </div> 19 </div><!-- # secondary -->19 </div><!-- #tertiary --> 20 20 <?php endif; ?> 21 No newline at end of file