From 39f7f558d91afdd2f3afc7f3b049a6a800cd3f80 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 10 Jan 2024 17:08:11 +0000 Subject: [PATCH] Editor: Clarify single post and page template descriptions. Follow-up to [55500]. Props mikachan. Fixes #60216. Built from https://develop.svn.wordpress.org/trunk@57265 git-svn-id: http://core.svn.wordpress.org/trunk@56771 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/block-template-utils.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/block-template-utils.php b/wp-includes/block-template-utils.php index f47c649fff..e2cd7c1587 100644 --- a/wp-includes/block-template-utils.php +++ b/wp-includes/block-template-utils.php @@ -125,11 +125,11 @@ function get_default_block_template_types() { ), 'single' => array( 'title' => _x( 'Single Posts', 'Template name' ), - 'description' => __( 'Displays single posts on your website unless a custom template has been applied to that post or a dedicated template exists.' ), + 'description' => __( 'Displays a single post on your website unless a custom template has been applied to that post or a dedicated template exists.' ), ), 'page' => array( 'title' => _x( 'Pages', 'Template name' ), - 'description' => __( 'Display all static pages unless a custom template has been applied or a dedicated template exists.' ), + 'description' => __( 'Displays a static page unless a custom template has been applied to that page or a dedicated template exists.' ), ), 'archive' => array( 'title' => _x( 'All Archives', 'Template name' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index a3a1205c04..8b6da18253 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57264'; +$wp_version = '6.5-alpha-57265'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.