Changeset 51193 for trunk/src/wp-includes/theme.php
- Timestamp:
- 06/22/2021 02:58:07 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r51092 r51193 908 908 function validate_theme_requirements( $stylesheet ) { 909 909 $theme = wp_get_theme( $stylesheet ); 910 911 // If the theme is a Full Site Editing theme, check for the presence of the Gutenberg plugin. 912 $theme_tags = $theme->get( 'Tags' ); 913 914 if ( ! empty( $theme_tags ) && in_array( 'full-site-editing', $theme_tags, true ) && ! is_plugin_active( 'gutenberg/gutenberg.php' ) ) { 915 return new WP_Error( 916 'theme_requires_fse', 917 sprintf( 918 /* translators: %s: Theme name. */ 919 _x( '<strong>Error:</strong> This theme (%s) uses Full Site Editing, which requires the Gutenberg plugin to be activated.', 'theme' ), 920 $theme->display( 'Name' ) 921 ) 922 ); 923 } 910 924 911 925 $requirements = array(
Note: See TracChangeset
for help on using the changeset viewer.