Themes: Add "Style Variations" to the list of WordPress theme features.
Follow-up to [meta12372]. Props poena, mukesh27, costdev. Fixes #56869. See #meta6545. Built from https://develop.svn.wordpress.org/trunk@55149 git-svn-id: http://core.svn.wordpress.org/trunk@54682 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
24bcc488b0
commit
a61dc175a8
|
@ -300,6 +300,7 @@ function get_theme_update_available( $theme ) {
|
|||
* @since 5.5.0 Added 'Wide Blocks' layout option.
|
||||
* @since 5.8.1 Added 'Template Editing' feature.
|
||||
* @since 6.1.1 Replaced 'Full Site Editing' feature name with 'Site Editor'.
|
||||
* @since 6.2.0 Added 'Style Variations' feature.
|
||||
*
|
||||
* @param bool $api Optional. Whether try to fetch tags from the WordPress.org API. Defaults to true.
|
||||
* @return array Array of features keyed by category with translations keyed by slug.
|
||||
|
@ -336,6 +337,7 @@ function get_theme_feature_list( $api = true ) {
|
|||
'full-width-template' => __( 'Full Width Template' ),
|
||||
'post-formats' => __( 'Post Formats' ),
|
||||
'sticky-post' => __( 'Sticky Post' ),
|
||||
'style-variations' => __( 'Style Variations' ),
|
||||
'template-editing' => __( 'Template Editing' ),
|
||||
'theme-options' => __( 'Theme Options' ),
|
||||
),
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.2-alpha-55148';
|
||||
$wp_version = '6.2-alpha-55149';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue