diff --git a/wp-admin/includes/class-wp-ms-themes-list-table.php b/wp-admin/includes/class-wp-ms-themes-list-table.php index 2091603cf0..d7d20e238a 100644 --- a/wp-admin/includes/class-wp-ms-themes-list-table.php +++ b/wp-admin/includes/class-wp-ms-themes-list-table.php @@ -728,6 +728,14 @@ class WP_MS_Themes_List_Table extends WP_List_Table { ); } + if ( $theme->parent() ) { + $theme_meta[] = sprintf( + /* translators: %s: Theme name. */ + __( 'Child theme of %s' ), + '' . $theme->parent()->display( 'Name' ) . '' + ); + } + /** * Filters the array of row meta for each theme in the Multisite themes * list table. diff --git a/wp-includes/version.php b/wp-includes/version.php index da714fd513..9c08cebb5f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50977'; +$wp_version = '5.8-alpha-50978'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.