diff --git a/src/wp-admin/includes/file.php b/src/wp-admin/includes/file.php index 595b2857b5..e75dc9b332 100644 --- a/src/wp-admin/includes/file.php +++ b/src/wp-admin/includes/file.php @@ -35,7 +35,7 @@ $wp_file_descriptions = array( 'singular.php' => __( 'Singular Template' ), 'single.php' => __( 'Single Post' ), 'page.php' => __( 'Single Page' ), - 'front-page.php' => __( 'Static Front Page' ), + 'front-page.php' => __( 'Static Homepage' ), // Attachments 'attachment.php' => __( 'Attachment Template' ), 'image.php' => __( 'Image Attachment Template' ), diff --git a/src/wp-admin/options-reading.php b/src/wp-admin/options-reading.php index baa9f7555a..d673066159 100644 --- a/src/wp-admin/options-reading.php +++ b/src/wp-admin/options-reading.php @@ -21,7 +21,7 @@ get_current_screen()->add_help_tab( array( '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 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') . '
' . + '' . 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.') . '
' . '' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '
', ) ); @@ -67,8 +67,8 @@ else : ?>- |
---|