Changeset 46283
- Timestamp:
- 09/23/2019 11:16:59 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r46278 r46283 447 447 array( 448 448 'wp_inactive_widgets' => array(), 449 ' footer-one' => array(449 'sidebar-1' => array( 450 450 0 => 'search-2', 451 451 1 => 'recent-posts-2', 452 452 2 => 'recent-comments-2', 453 453 ), 454 ' footer-two' => array(454 'sidebar-2' => array( 455 455 0 => 'archives-2', 456 456 1 => 'categories-2', -
trunk/src/wp-content/themes/twentytwenty/footer.php
r46271 r46283 90 90 91 91 92 <?php if ( is_active_sidebar( ' footer-one' ) || is_active_sidebar( 'footer-two' ) ) { ?>92 <?php if ( is_active_sidebar( 'sidebar-1' ) || is_active_sidebar( 'sidebar-2' ) ) { ?> 93 93 94 94 <div class="footer-widgets-outer-wrapper"> … … 96 96 <div class="footer-widgets-wrapper"> 97 97 98 <?php if ( is_active_sidebar( ' footer-one' ) ) { ?>98 <?php if ( is_active_sidebar( 'sidebar-1' ) ) { ?> 99 99 100 100 <div class="footer-widgets column-one grid-item"> 101 <?php dynamic_sidebar( ' footer-one' ); ?>101 <?php dynamic_sidebar( 'sidebar-1' ); ?> 102 102 </div> 103 103 104 104 <?php } ?> 105 105 106 <?php if ( is_active_sidebar( ' footer-two' ) ) { ?>106 <?php if ( is_active_sidebar( 'sidebar-2' ) ) { ?> 107 107 108 108 <div class="footer-widgets column-two grid-item"> 109 <?php dynamic_sidebar( ' footer-two' ); ?>109 <?php dynamic_sidebar( 'sidebar-2' ); ?> 110 110 </div> 111 111 -
trunk/src/wp-content/themes/twentytwenty/functions.php
r46271 r46283 335 335 array( 336 336 'name' => __( 'Footer #1', 'twentytwenty' ), 337 'id' => ' footer-one',337 'id' => 'sidebar-1', 338 338 'description' => __( 'Widgets in this area will be displayed in the first column in the footer.', 'twentytwenty' ), 339 339 ) … … 347 347 array( 348 348 'name' => __( 'Footer #2', 'twentytwenty' ), 349 'id' => ' footer-two',349 'id' => 'sidebar-2', 350 350 'description' => __( 'Widgets in this area will be displayed in the second column in the footer.', 'twentytwenty' ), 351 351 ) -
trunk/src/wp-content/themes/twentytwenty/inc/starter-content.php
r46271 r46283 24 24 'widgets' => array( 25 25 // Place one core-defined widgets in the first tooter widget area. 26 ' footer-one' => array(26 'sidebar-1' => array( 27 27 'text_about', 28 28 ), 29 29 // Place one core-defined widgets in the second tooter widget area. 30 ' footer-two' => array(30 'sidebar-2' => array( 31 31 'text_business_info', 32 32 ), -
trunk/tests/phpunit/tests/customize/manager.php
r46282 r46283 1778 1778 $old_sidebars_widgets = get_option( 'sidebars_widgets' ); 1779 1779 $new_sidebars_widgets = $old_sidebars_widgets; 1780 $this->assertGreaterThan( 2, count( $new_sidebars_widgets[' footer-one'] ) );1781 $new_sidebar_1 = array_reverse( $new_sidebars_widgets[' footer-one'] );1780 $this->assertGreaterThan( 2, count( $new_sidebars_widgets['sidebar-1'] ) ); 1781 $new_sidebar_1 = array_reverse( $new_sidebars_widgets['sidebar-1'] ); 1782 1782 1783 1783 $post_id = $this->factory()->post->create( … … 1788 1788 'post_content' => wp_json_encode( 1789 1789 array( 1790 'sidebars_widgets[ footer-one]' => array(1790 'sidebars_widgets[sidebar-1]' => array( 1791 1791 'value' => $new_sidebar_1, 1792 1792 ), … … 1805 1805 // Ensure that the value has actually been written to the DB. 1806 1806 $updated_sidebars_widgets = get_option( 'sidebars_widgets' ); 1807 $this->assertEquals( $new_sidebar_1, $updated_sidebars_widgets[' footer-one'] );1807 $this->assertEquals( $new_sidebar_1, $updated_sidebars_widgets['sidebar-1'] ); 1808 1808 } 1809 1809 -
trunk/tests/phpunit/tests/customize/widgets.php
r46282 r46283 33 33 unset( $GLOBALS['_wp_sidebars_widgets'] ); // clear out cache set by wp_get_sidebars_widgets() 34 34 $sidebars_widgets = wp_get_sidebars_widgets(); 35 $this->assertEqualSets( array( 'wp_inactive_widgets', ' footer-one', 'footer-two' ), array_keys( wp_get_sidebars_widgets() ) );36 $this->assertContains( 'search-2', $sidebars_widgets[' footer-one'] );37 $this->assertContains( 'categories-2', $sidebars_widgets[' footer-two'] );35 $this->assertEqualSets( array( 'wp_inactive_widgets', 'sidebar-1', 'sidebar-2' ), array_keys( wp_get_sidebars_widgets() ) ); 36 $this->assertContains( 'search-2', $sidebars_widgets['sidebar-1'] ); 37 $this->assertContains( 'categories-2', $sidebars_widgets['sidebar-2'] ); 38 38 $this->assertArrayHasKey( 2, get_option( 'widget_search' ) ); 39 39 $widget_categories = get_option( 'widget_categories' ); … … 102 102 */ 103 103 function test_customize_register_with_deleted_sidebars() { 104 $sidebar_id = ' footer-one';104 $sidebar_id = 'sidebar-1'; 105 105 delete_option( 'sidebars_widgets' ); 106 106 register_sidebar( array( 'id' => $sidebar_id ) ); … … 312 312 'sanitize_js_callback' => array( $this->manager->widgets, 'sanitize_sidebar_widgets_js_instance' ), 313 313 ); 314 $args = $this->manager->widgets->get_setting_args( 'sidebars_widgets[ footer-one]' );314 $args = $this->manager->widgets->get_setting_args( 'sidebars_widgets[sidebar-1]' ); 315 315 foreach ( $default_args as $key => $default_value ) { 316 316 $this->assertEquals( $default_value, $args[ $key ] ); 317 317 } 318 $this->assertEquals( 'SIDEBARS_WIDGETS[ FOOTER-ONE]', $args['uppercase_id_set_by_filter'] );318 $this->assertEquals( 'SIDEBARS_WIDGETS[SIDEBAR-1]', $args['uppercase_id_set_by_filter'] ); 319 319 320 320 $override_args = array( … … 654 654 $this->assertFalse( $this->manager->widgets->render_widget_partial( $partial, array( 'sidebar_id' => 'non-existing' ) ) ); 655 655 656 $output = $this->manager->widgets->render_widget_partial( $partial, array( 'sidebar_id' => ' footer-one' ) );656 $output = $this->manager->widgets->render_widget_partial( $partial, array( 'sidebar_id' => 'sidebar-1' ) ); 657 657 658 658 $this->assertEquals( 1, substr_count( $output, 'data-customize-partial-id' ) );
Note: See TracChangeset
for help on using the changeset viewer.