Changeset 9876
- Timestamp:
- 05/14/2020 02:39:27 PM (5 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-themes-api.php
r9590 r9876 294 294 } 295 295 296 // Pending https://core.trac.wordpress.org/ticket/46272296 // See https://core.trac.wordpress.org/ticket/46272. 297 297 if ( ! isset( $wp_version ) || version_compare( $wp_version, '5.2-alpha', '>=' ) ) { 298 298 $tags[ __( 'Layout' ) ]['wide-blocks'] = __( 'Wide Blocks' ); 299 299 $tags[ __( 'Features' ) ]['block-styles'] = __( 'Block Editor Styles' ); 300 300 asort( $tags[ __( 'Features' ) ] ); // To move block-styles to the right place. 301 } 302 303 // See https://core.trac.wordpress.org/ticket/50164. 304 if ( ! isset( $wp_version ) || version_compare( $wp_version, '5.5-alpha', '>=' ) ) { 305 $tags[ __( 'Features' ) ]['block-patterns'] = __( 'Block Editor Patterns' ); 306 $tags[ __( 'Features' ) ]['full-site-editing'] = __( 'Full Site Editing' ); 307 asort( $tags[ __( 'Features' ) ] ); 301 308 } 302 309 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php
r9864 r9876 336 336 __( 'Features', 'wporg-themes' ) => array( 337 337 'accessibility-ready' => __( 'Accessibility Ready', 'wporg-themes' ), 338 'block-patterns' => __( 'Block Editor Patterns', 'wporg-themes' ), 338 339 'block-styles' => __( 'Block Editor Styles', 'wporg-themes' ), 339 340 'buddypress' => __( 'BuddyPress', 'wporg-themes' ), … … 349 350 'footer-widgets' => __( 'Footer Widgets', 'wporg-themes' ), 350 351 'front-page-post-form' => __( 'Front Page Posting', 'wporg-themes' ), 352 'full-site-editing' => __( 'Full Site Editing', 'wporg-themes' ), 351 353 'full-width-template' => __( 'Full Width Template', 'wporg-themes' ), 352 354 'microformats' => __( 'Microformats', 'wporg-themes' ),
Note: See TracChangeset
for help on using the changeset viewer.