Changeset 41363
- Timestamp:
- 09/10/2017 04:19:53 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r41258 r41363 36 36 'single.php' => __( 'Single Post' ), 37 37 'page.php' => __( 'Single Page' ), 38 'front-page.php' => __( 'Static Front Page' ),38 'front-page.php' => __( 'Static Homepage' ), 39 39 // Attachments 40 40 'attachment.php' => __( 'Attachment Template' ), -
trunk/src/wp-admin/options-reading.php
r40540 r41363 22 22 'title' => __('Overview'), 23 23 'content' => '<p>' . __('This screen contains the settings that affect the display of your content.') . '</p>' . 24 '<p>' . 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 <a href="%s">Pages</a>. One will become the frontpage, and the other will be where your posts are displayed.'), 'post-new.php?post_type=page') . '</p>' .24 '<p>' . 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 <a href="%s">Pages</a>. One will become the homepage, and the other will be where your posts are displayed.'), 'post-new.php?post_type=page') . '</p>' . 25 25 '<p>' . __('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.') . '</p>' . 26 26 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>', … … 68 68 <table class="form-table"> 69 69 <tr> 70 <th scope="row"><?php _e( ' Frontpage displays' ); ?></th>71 <td id="front-static-pages"><fieldset><legend class="screen-reader-text"><span><?php _e( ' Frontpage displays' ); ?></span></legend>70 <th scope="row"><?php _e( 'Your homepage displays' ); ?></th> 71 <td id="front-static-pages"><fieldset><legend class="screen-reader-text"><span><?php _e( 'Your homepage displays' ); ?></span></legend> 72 72 <p><label> 73 73 <input name="show_on_front" type="radio" value="posts" class="tog" <?php checked( 'posts', get_option( 'show_on_front' ) ); ?> /> … … 81 81 </p> 82 82 <ul> 83 <li><label for="page_on_front"><?php printf( __( ' Frontpage: %s' ), wp_dropdown_pages( array( 'name' => 'page_on_front', 'echo' => 0, 'show_option_none' => __( '— Select —' ), 'option_none_value' => '0', 'selected' => get_option( 'page_on_front' ) ) ) ); ?></label></li>83 <li><label for="page_on_front"><?php printf( __( 'Homepage: %s' ), wp_dropdown_pages( array( 'name' => 'page_on_front', 'echo' => 0, 'show_option_none' => __( '— Select —' ), 'option_none_value' => '0', 'selected' => get_option( 'page_on_front' ) ) ) ); ?></label></li> 84 84 <li><label for="page_for_posts"><?php printf( __( 'Posts page: %s' ), wp_dropdown_pages( array( 'name' => 'page_for_posts', 'echo' => 0, 'show_option_none' => __( '— Select —' ), 'option_none_value' => '0', 'selected' => get_option( 'page_for_posts' ) ) ) ); ?></label></li> 85 85 </ul> -
trunk/src/wp-includes/class-wp-customize-manager.php
r41355 r41363 4113 4113 4114 4114 $this->add_section( 'static_front_page', array( 4115 'title' => __( ' Static Front Page' ),4115 'title' => __( 'Homepage Settings' ), 4116 4116 'priority' => 120, 4117 'description' => __( 'Your theme supports a static frontpage.' ),4117 'description' => __( 'Your theme supports a static homepage.' ), 4118 4118 'active_callback' => array( $this, 'has_published_pages' ), 4119 4119 ) ); … … 4126 4126 4127 4127 $this->add_control( 'show_on_front', array( 4128 'label' => __( ' Frontpage displays' ),4128 'label' => __( 'Your homepage displays' ), 4129 4129 'section' => 'static_front_page', 4130 4130 'type' => 'radio', … … 4141 4141 4142 4142 $this->add_control( 'page_on_front', array( 4143 'label' => __( ' Frontpage' ),4143 'label' => __( 'Homepage' ), 4144 4144 'section' => 'static_front_page', 4145 4145 'type' => 'dropdown-pages',
Note: See TracChangeset
for help on using the changeset viewer.