Changeset 51197
- Timestamp:
- 06/22/2021 05:55:52 AM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/customize.php
r51193 r51197 190 190 $theme_tags = $wp_customize->theme()->get( 'Tags' ); 191 191 192 if ( ! empty( $theme_tags ) && in_array( 'full-site-editing', $theme_tags, true ) && ! is_plugin_active( 'gutenberg/gutenberg.php' ) ) {192 if ( ! empty( $theme_tags ) && in_array( 'full-site-editing', $theme_tags, true ) && ! function_exists( 'gutenberg_is_fse_theme' ) ) { 193 193 $fse_safe = false; 194 194 } -
trunk/src/wp-includes/theme.php
r51193 r51197 912 912 $theme_tags = $theme->get( 'Tags' ); 913 913 914 if ( ! empty( $theme_tags ) && in_array( 'full-site-editing', $theme_tags, true ) && ! is_plugin_active( 'gutenberg/gutenberg.php' ) ) {914 if ( ! empty( $theme_tags ) && in_array( 'full-site-editing', $theme_tags, true ) && ! function_exists( 'gutenberg_is_fse_theme' ) ) { 915 915 return new WP_Error( 916 916 'theme_requires_fse',
Note: See TracChangeset
for help on using the changeset viewer.