Make WordPress Core


Ignore:
Timestamp:
09/10/2017 04:19:53 PM (9 years ago)
Author:
westonruter
Message:

Customize: Rename "Static front page" to just "Homepage".

Props danieltj, melchoyce.
Fixes #41828.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-manager.php

    r41355 r41363  
    41134113
    41144114        $this->add_section( 'static_front_page', array(
    4115             'title' => __( 'Static Front Page' ),
     4115            'title' => __( 'Homepage Settings' ),
    41164116            'priority' => 120,
    4117             'description' => __( 'Your theme supports a static front page.' ),
     4117            'description' => __( 'Your theme supports a static homepage.' ),
    41184118            'active_callback' => array( $this, 'has_published_pages' ),
    41194119        ) );
     
    41264126
    41274127        $this->add_control( 'show_on_front', array(
    4128             'label' => __( 'Front page displays' ),
     4128            'label' => __( 'Your homepage displays' ),
    41294129            'section' => 'static_front_page',
    41304130            'type' => 'radio',
     
    41414141
    41424142        $this->add_control( 'page_on_front', array(
    4143             'label' => __( 'Front page' ),
     4143            'label' => __( 'Homepage' ),
    41444144            'section' => 'static_front_page',
    41454145            'type' => 'dropdown-pages',
Note: See TracChangeset for help on using the changeset viewer.