Changeset 48749 for trunk/src/wp-includes/theme.php
- Timestamp:
- 08/07/2020 03:24:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r48612 r48749 2473 2473 * by adding it to the function signature. 2474 2474 * @since 5.5.0 The `core-block-patterns` feature was added and is enabled by default. 2475 * @since 5.5.0 The `custom-logo` feature now also accepts 'unlink-homepage-logo'. 2475 2476 * 2476 2477 * @global array $_wp_theme_features … … 2539 2540 } 2540 2541 $defaults = array( 2541 'width' => null, 2542 'height' => null, 2543 'flex-width' => false, 2544 'flex-height' => false, 2545 'header-text' => '', 2542 'width' => null, 2543 'height' => null, 2544 'flex-width' => false, 2545 'flex-height' => false, 2546 'header-text' => '', 2547 'unlink-homepage-logo' => false, 2546 2548 ); 2547 2549 $args[0] = wp_parse_args( array_intersect_key( $args[0], $defaults ), $defaults );
Note: See TracChangeset
for help on using the changeset viewer.