Changeset 32768 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 06/14/2015 06:55:52 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r32654 r32768 157 157 158 158 if ( empty($first_post) ) 159 $first_post = __( 'Welcome to <a href="SITE_URL">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!' );159 $first_post = __( 'Welcome to <a href="SITE_URL">SITE_NAME</a>. This is your first post. Edit or delete it, then start writing!' ); 160 160 161 161 $first_post = str_replace( "SITE_URL", esc_url( network_home_url() ), $first_post ); 162 162 $first_post = str_replace( "SITE_NAME", get_current_site()->site_name, $first_post ); 163 163 } else { 164 $first_post = __( 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!');164 $first_post = __( 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!' ); 165 165 } 166 166 … … 207 207 $first_page = sprintf( __( "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this: 208 208 209 <blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)</blockquote>209 <blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)</blockquote> 210 210 211 211 ...or something like this:
Note: See TracChangeset
for help on using the changeset viewer.