diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php
index 9178037267..68218d4f2d 100644
--- a/wp-admin/edit-form-advanced.php
+++ b/wp-admin/edit-form-advanced.php
@@ -434,7 +434,7 @@ echo esc_html( $title );
cap->create_posts ) ) {
- echo ' ' . esc_html( $post_type_object->labels->add_new ) . '';
+ echo ' ' . esc_html( $post_type_object->labels->add_new_item ) . '';
}
?>
diff --git a/wp-admin/edit.php b/wp-admin/edit.php
index 93bcef797f..15cb17d303 100644
--- a/wp-admin/edit.php
+++ b/wp-admin/edit.php
@@ -419,7 +419,7 @@ echo esc_html( $post_type_object->labels->name );
cap->create_posts ) ) {
- echo ' ' . esc_html( $post_type_object->labels->add_new ) . '';
+ echo ' ' . esc_html( $post_type_object->labels->add_new_item ) . '';
}
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
diff --git a/wp-admin/menu.php b/wp-admin/menu.php
index 03a2ed871a..3f0a773414 100644
--- a/wp-admin/menu.php
+++ b/wp-admin/menu.php
@@ -169,7 +169,7 @@ foreach ( array_merge( $builtin, $types ) as $ptype ) {
$menu[ $ptype_menu_position ] = array( esc_attr( $ptype_obj->labels->menu_name ), $ptype_obj->cap->edit_posts, $ptype_file, '', $menu_class, $ptype_menu_id, $menu_icon );
$submenu[ $ptype_file ][5] = array( $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, $ptype_file );
- $submenu[ $ptype_file ][10] = array( $ptype_obj->labels->add_new, $ptype_obj->cap->create_posts, $post_new_file );
+ $submenu[ $ptype_file ][10] = array( $ptype_obj->labels->add_new_item, $ptype_obj->cap->create_posts, $post_new_file );
$i = 15;
foreach ( get_taxonomies( array(), 'objects' ) as $tax ) {
diff --git a/wp-includes/class-wp-post-type.php b/wp-includes/class-wp-post-type.php
index 69a6db36fd..5336d3e1cf 100644
--- a/wp-includes/class-wp-post-type.php
+++ b/wp-includes/class-wp-post-type.php
@@ -973,7 +973,7 @@ final class WP_Post_Type {
self::$default_labels = array(
'name' => array( _x( 'Posts', 'post type general name' ), _x( 'Pages', 'post type general name' ) ),
'singular_name' => array( _x( 'Post', 'post type singular name' ), _x( 'Page', 'post type singular name' ) ),
- 'add_new' => array( __( 'Add New Post' ), __( 'Add New Page' ) ),
+ 'add_new' => array( __( 'Add New' ), __( 'Add New' ) ),
'add_new_item' => array( __( 'Add New Post' ), __( 'Add New Page' ) ),
'edit_item' => array( __( 'Edit Post' ), __( 'Edit Page' ) ),
'new_item' => array( __( 'New Post' ), __( 'New Page' ) ),
diff --git a/wp-includes/post.php b/wp-includes/post.php
index 9896139937..eb90e762f5 100644
--- a/wp-includes/post.php
+++ b/wp-includes/post.php
@@ -2022,7 +2022,7 @@ function _post_type_meta_capabilities( $capabilities = null ) {
* - `name` - General name for the post type, usually plural. The same and overridden
* by `$post_type_object->label`. Default is 'Posts' / 'Pages'.
* - `singular_name` - Name for one object of this post type. Default is 'Post' / 'Page'.
- * - `add_new` - Label for adding a new item. Default is 'Add New Post' / 'Add New Page'.
+ * - `add_new` - Label for adding a new item. Default is 'Add New' / 'Add New'.
* - `add_new_item` - Label for adding a new singular item. Default is 'Add New Post' / 'Add New Page'.
* - `edit_item` - Label for editing a singular item. Default is 'Edit Post' / 'Edit Page'.
* - `new_item` - Label for the new item page title. Default is 'New Post' / 'New Page'.
@@ -2084,6 +2084,8 @@ function _post_type_meta_capabilities( $capabilities = null ) {
* @since 6.4.0 Changed default values for the `add_new` label to include the type of content.
* This matches `add_new_item` and provides more context for better accessibility.
* @since 6.6.0 Added the `template_name` label.
+ * @since 6.7.0 Restored pre-6.4.0 defaults for the `add_new` label and updated documentation.
+ * Updated core usage to reference `add_new_item`.
*
* @access private
*
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 0f083bf562..6f62294602 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '6.7-beta1-59160';
+$wp_version = '6.7-beta1-59161';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.