Changeset 43820 for branches/5.0/src/wp-admin/includes/upgrade.php
- Timestamp:
- 10/24/2018 06:50:35 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-admin/includes/upgrade.php
r43765 r43820 161 161 if ( ! $first_post ) { 162 162 /* translators: %s: site link */ 163 $first_post = __( 'Welcome to %s. This is your first post. Edit or delete it, then start blogging!' ); 163 $first_post = __( '<!-- wp:paragraph --> 164 <p>Welcome to %s. This is your first post. Edit or delete it, then start writing!</p> 165 <!-- /wp:paragraph -->' ); 164 166 } 165 167 … … 172 174 $first_post = str_replace( 'SITE_NAME', get_network()->site_name, $first_post ); 173 175 } else { 174 $first_post = __( 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!' ); 176 $first_post = __( '<!-- wp:paragraph --> 177 <p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p> 178 <!-- /wp:paragraph -->' ); 175 179 } 176 180 … … 222 226 $first_page = get_site_option( 'first_page' ); 223 227 224 $first_page = ! empty( $first_page ) ? $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: 225 226 <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> 227 228 ...or something like this: 229 230 <blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote> 231 232 As a new WordPress user, you should go to <a href=\"%s\">your dashboard</a> to delete this page and create new pages for your content. Have fun!" ), admin_url() ); 228 $first_page = ! empty( $first_page ) ? $first_page : sprintf( __( "<!-- wp:paragraph --> 229 <p>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:</p> 230 <!-- /wp:paragraph --> 231 232 <!-- wp:quote --> 233 <blockquote class=\"wp-block-quote\"><p>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.)</p></blockquote> 234 <!-- /wp:quote --> 235 236 <!-- wp:paragraph --> 237 <p>...or something like this:</p> 238 <!-- /wp:paragraph --> 239 240 <!-- wp:quote --> 241 <blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote> 242 <!-- /wp:quote --> 243 244 <!-- wp:paragraph --> 245 <p>As a new WordPress user, you should go to <a href=\"%s\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p> 246 <!-- /wp:paragraph -->" ), admin_url() ); 233 247 234 248 $first_post_guid = get_option('home') . '/?page_id=2';
Note: See TracChangeset
for help on using the changeset viewer.