Make WordPress Core

Changeset 41364


Ignore:
Timestamp:
09/10/2017 05:07:50 PM (7 years ago)
Author:
westonruter
Message:

Customize: Re-use homepage settings help tab text from Reading Options admin screen in description for corresponding Customizer section.

Also remove "Static" reference in template name, missed in [41363].

See #41829.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/file.php

    r41363 r41364  
    3636    'single.php'            => __( 'Single Post' ),
    3737    'page.php'              => __( 'Single Page' ),
    38     'front-page.php'        => __( 'Static Homepage' ),
     38    'front-page.php'        => __( 'Homepage' ),
    3939    // Attachments
    4040    'attachment.php'        => __( 'Attachment Template' ),
  • trunk/src/wp-includes/class-wp-customize-manager.php

    r41363 r41364  
    41154115            'title' => __( 'Homepage Settings' ),
    41164116            'priority' => 120,
    4117             'description' => __( 'Your theme supports a static homepage.' ),
     4117            'description' => __( '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.' ),
    41184118            'active_callback' => array( $this, 'has_published_pages' ),
    41194119        ) );
Note: See TracChangeset for help on using the changeset viewer.