Post Types: Add the view_items label to the wp_block post type.
The `view_items` post type label is used in the Editor, for the `aria-label` of the link to go back to the Posts list. When editing a Reusable block, it fallbacks to 'View Posts'. It should be 'View Reusable blocks'. Fixes #58209. Built from https://develop.svn.wordpress.org/trunk@55709 git-svn-id: http://core.svn.wordpress.org/trunk@55221 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5a32396d8f
commit
6064478fa7
|
@ -289,6 +289,7 @@ function create_initial_post_types() {
|
|||
'new_item' => __( 'New Reusable block' ),
|
||||
'edit_item' => __( 'Edit Reusable block' ),
|
||||
'view_item' => __( 'View Reusable block' ),
|
||||
'view_items' => __( 'View Reusable blocks' ),
|
||||
'all_items' => __( 'All Reusable blocks' ),
|
||||
'search_items' => __( 'Search Reusable blocks' ),
|
||||
'not_found' => __( 'No reusable blocks found.' ),
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55706';
|
||||
$wp_version = '6.3-alpha-55709';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue