Changeset 54786
- Timestamp:
- 11/10/2022 09:38:58 AM (23 months ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r54729 r54786 215 215 <?php 216 216 printf( 217 /* translators: %s: Link to "full site editing" themes on WordPress.org. */217 /* translators: %s: Link to Block Themes on WordPress.org. */ 218 218 __( 'The Themes Directory has <a href="%s">a filter for block themes</a>, and a pattern preview gives a better sense of what the theme might look like while exploring different themes and patterns.' ), 219 219 esc_url( __( 'https://wordpress.org/themes/tags/full-site-editing/' ) ) -
trunk/src/wp-admin/includes/theme.php
r54659 r54786 300 300 * @since 5.5.0 Added 'Wide Blocks' layout option. 301 301 * @since 5.8.1 Added 'Template Editing' feature. 302 * @since 6.2.0 Replaced 'Full Site Editing' feature name with 'Site Editor'. 302 303 * 303 304 * @param bool $api Optional. Whether try to fetch tags from the WordPress.org API. Defaults to true. … … 332 333 'featured-images' => __( 'Featured Images' ), 333 334 'footer-widgets' => __( 'Footer Widgets' ), 334 'full-site-editing' => __( ' Full Site Editing' ),335 'full-site-editing' => __( 'Site Editor' ), 335 336 'full-width-template' => __( 'Full Width Template' ), 336 337 'post-formats' => __( 'Post Formats' ), -
trunk/src/wp-admin/site-editor.php
r54176 r54786 21 21 22 22 if ( ! ( current_theme_supports( 'block-template-parts' ) || wp_is_block_theme() ) ) { 23 wp_die( __( 'The theme you are currently using is not compatible with Full Site Editing.' ) );23 wp_die( __( 'The theme you are currently using is not compatible with the Site Editor.' ) ); 24 24 } 25 25 -
trunk/src/wp-content/themes/twentytwentytwo/readme.txt
r54492 r54786 12 12 Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. 13 13 14 The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Full Site Editingfeatures introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks.14 The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. 15 15 16 16 Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours. -
trunk/src/wp-content/themes/twentytwentytwo/style.css
r54492 r54786 4 4 Author: the WordPress team 5 5 Author URI: https://wordpress.org/ 6 Description: Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Full Site Editingfeatures introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours.6 Description: Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours. 7 7 Requires at least: 5.9 8 8 Tested up to: 6.1 -
trunk/src/wp-includes/block-template.php
r54319 r54786 44 44 * @param string $type Sanitized filename without extension. 45 45 * @param string[] $templates A list of template candidates, in descending order of priority. 46 * @return string The path to the Full Site Editingtemplate canvas file, or the fallback PHP template.46 * @return string The path to the Site Editor template canvas file, or the fallback PHP template. 47 47 */ 48 48 function locate_block_template( $template, $type, array $templates ) { -
trunk/src/wp-includes/script-loader.php
r54754 r54786 1288 1288 'blockThemeNotification' => sprintf( 1289 1289 /* translators: 1: Link to Site Editor documentation on HelpHub, 2: HTML button. */ 1290 __( 'Hurray! Your theme supports FullSite Editing with blocks. <a href="%1$s">Tell me more</a>. %2$s' ),1290 __( 'Hurray! Your theme supports Site Editing with blocks. <a href="%1$s">Tell me more</a>. %2$s' ), 1291 1291 __( 'https://wordpress.org/support/article/site-editor/' ), 1292 1292 sprintf(
Note: See TracChangeset
for help on using the changeset viewer.