Changeset 45926 for trunk/src/wp-admin/options-reading.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-reading.php
r45913 r45926 25 25 'content' => '<p>' . __( 'This screen contains the settings that affect the display of your content.' ) . '</p>' . 26 26 '<p>' . sprintf( 27 /* translators: %s: URL to Pages screen*/27 /* translators: %s: URL to create a new page */ 28 28 __( '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.' ), 29 29 'post-new.php?post_type=page' … … 92 92 <p><label> 93 93 <input name="show_on_front" type="radio" value="page" class="tog" <?php checked( 'page', get_option( 'show_on_front' ) ); ?> /> 94 <?php printf( __( 'A <a href="%s">static page</a> (select below)' ), 'edit.php?post_type=page' ); ?> 94 <?php 95 printf( 96 /* translators: %s: URL to Pages screen */ 97 __( 'A <a href="%s">static page</a> (select below)' ), 98 'edit.php?post_type=page' 99 ); 100 ?> 95 101 </label> 96 102 </p> … … 99 105 <?php 100 106 printf( 107 /* translators: %s: select field to choose the front page */ 101 108 __( 'Homepage: %s' ), 102 109 wp_dropdown_pages( … … 115 122 <?php 116 123 printf( 124 /* translators: %s: select field to choose the page for posts */ 117 125 __( 'Posts page: %s' ), 118 126 wp_dropdown_pages(
Note: See TracChangeset
for help on using the changeset viewer.