Commit 3d64c93f32 for wordpress.org
commit 3d64c93f32158eb6c94a872cccdcee31c5545dd5
Author: oandregal <oandregal@git.wordpress.org>
Date: Wed Sep 9 08:38:49 2026 +0000
View config: remove stale fields from wp_template.
Props oandregal, ntsekouras.
Part of #65981.
Built from https://develop.svn.wordpress.org/trunk@63551
git-svn-id: http://core.svn.wordpress.org/trunk@62727 1a063a9b-81f0-0310-95a4-ce76da25c4cd
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 00572867cf..afc1f695b3 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '7.2-alpha-63549';
+$wp_version = '7.2-alpha-63551';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
diff --git a/wp-includes/view-config.php b/wp-includes/view-config.php
index dd77063aff..d972515c12 100644
--- a/wp-includes/view-config.php
+++ b/wp-includes/view-config.php
@@ -566,7 +566,7 @@ function _wp_get_entity_view_config_posttype_wp_template( $data ) {
'titleField' => 'title',
'descriptionField' => 'description',
'mediaField' => 'preview',
- 'fields' => array( 'author', 'active', 'slug', 'theme' ),
+ 'fields' => array( 'author' ),
'filters' => array(),
'showMedia' => true,
);