diff --git a/wp-admin/edit-form-blocks.php b/wp-admin/edit-form-blocks.php index 3a61483be0..c2d6b8b965 100644 --- a/wp-admin/edit-form-blocks.php +++ b/wp-admin/edit-form-blocks.php @@ -301,11 +301,12 @@ if ( $user_id ) { * Filters the body placeholder text. * * @since 5.0.0 + * @since 5.8.0 Changed the default placeholder text. * - * @param string $text Placeholder text. Default 'Start writing or type / to choose a block'. + * @param string $text Placeholder text. Default 'Type / to choose a block'. * @param WP_Post $post Post object. */ -$body_placeholder = apply_filters( 'write_your_story', __( 'Start writing or type / to choose a block' ), $post ); +$body_placeholder = apply_filters( 'write_your_story', __( 'Type / to choose a block' ), $post ); $editor_settings = array( 'alignWide' => $align_wide, diff --git a/wp-includes/version.php b/wp-includes/version.php index c621760e3e..3a9323ec84 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50641'; +$wp_version = '5.8-alpha-50647'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.