From e9d1a9a539e4b12650f23c9aa306be15eb705557 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 29 Aug 2019 21:24:46 +0000 Subject: [PATCH] Administration: Add a note to "For each post in a feed, include [Full text / Summary]" option that how content is displayed in browsers depends on the theme. Add a documentation link to learn more about feeds. Props JarretC, SergeyBiryukov, pento, talldanwp, dinhtungdu, noisysocks, tobifjellner. Fixes #46708. git-svn-id: https://develop.svn.wordpress.org/trunk@45912 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/options-reading.php | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/src/wp-admin/options-reading.php b/src/wp-admin/options-reading.php index aacbfe7402..ccc6d1fcac 100644 --- a/src/wp-admin/options-reading.php +++ b/src/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/' ) + ); + ?> +