diff --git a/wp-admin/options-reading.php b/wp-admin/options-reading.php index aacbfe7402..ccc6d1fcac 100644 --- a/wp-admin/options-reading.php +++ b/wp-admin/options-reading.php @@ -23,8 +23,15 @@ get_current_screen()->add_help_tab( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

' . __( 'This screen contains the settings that affect the display of your content.' ) . '

' . - '

' . sprintf( __( 'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.' ), 'post-new.php?post_type=page' ) . '

' . - '

' . __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or a summary.' ) . '

' . + '

' . sprintf( + __( 'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.' ), + 'post-new.php?post_type=page' + ) . '

' . + '

' . sprintf( + /* translators: %s: Documentation URL */ + __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or a summary. Learn more about feeds.' ), + __( 'https://wordpress.org/support/article/wordpress-feeds/' ) + ) . '

' . '

' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '

', ) ); @@ -140,10 +147,21 @@ else : - -
-


-

+ +
+

+
+ +

+

+ Learn more about feeds.' ), + __( 'https://wordpress.org/support/article/wordpress-feeds/' ) + ); + ?> +

diff --git a/wp-includes/version.php b/wp-includes/version.php index 01012bb30c..f8eef6dead 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45911'; +$wp_version = '5.3-alpha-45912'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.