Changeset 53815 for trunk/src/wp-admin/options-general.php
- Timestamp:
- 08/03/2022 12:18:22 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-general.php
r53186 r53815 67 67 </tr> 68 68 69 <?php 70 /* translators: Site tagline. */ 71 $sample_tagline = __( 'Just another WordPress site' ); 72 if ( is_multisite() ) { 73 /* translators: %s: Network title. */ 74 $sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name ); 75 } 76 ?> 69 77 <tr> 70 78 <th scope="row"><label for="blogdescription"><?php _e( 'Tagline' ); ?></label></th> 71 <td><input name="blogdescription" type="text" id="blogdescription" aria-describedby="tagline-description" value="<?php form_option( 'blogdescription' ); ?>" class="regular-text" />79 <td><input name="blogdescription" type="text" id="blogdescription" aria-describedby="tagline-description" value="<?php form_option( 'blogdescription' ); ?>" class="regular-text" placeholder="<?php echo $sample_tagline; ?>" /> 72 80 <p class="description" id="tagline-description"><?php _e( 'In a few words, explain what this site is about.' ); ?></p></td> 73 81 </tr>
Note: See TracChangeset
for help on using the changeset viewer.