Changeset 41363 for trunk/src/wp-admin/options-reading.php
- Timestamp:
- 09/10/2017 04:19:53 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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>
Note: See TracChangeset
for help on using the changeset viewer.