From 1eb45efa8616507326377374e3ccd0acf3799a7b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 23 Apr 2017 14:33:37 +0000 Subject: [PATCH] Help/About: Fix typo in help text on Reading Settings screen. Props Arena94, bhargavbhandari90. Fixes #40530. git-svn-id: https://develop.svn.wordpress.org/trunk@40540 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/options-reading.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/options-reading.php b/src/wp-admin/options-reading.php index 69c425f759..baa9f7555a 100644 --- a/src/wp-admin/options-reading.php +++ b/src/wp-admin/options-reading.php @@ -22,7 +22,7 @@ get_current_screen()->add_help_tab( array( 'title' => __('Overview'), 'content' => '

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

' . '

' . sprintf(__('You can choose what’s displayed on the front page of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static home page, you first need to create two Pages. One will become the front page, 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 numbers of posts to display and whether to show full text or a summary.') . '

' . + '

' . __('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.') . '

' . '

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

', ) );