Ticket #45151: 45151.4.diff
File 45151.4.diff, 3.1 KB (added by , 6 years ago) |
---|
-
src/wp-admin/includes/upgrade.php
225 225 if ( is_multisite() ) 226 226 $first_page = get_site_option( 'first_page' ); 227 227 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 --> 228 if ( empty( $first_page ) ) { 229 $first_page = sprintf( 230 /* translators: Sample page content. 1: Site admin URL, 2: Opening paragraph block markup. 3: Closing 231 paragraph block markup. 4. Opening quote block markup. 5: Closing quote block markup. */ 232 __( '%2$sThis 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:%3$s 231 233 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 --> 234 %4$sHi 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.)%5$s 235 235 236 <!-- wp:paragraph --> 237 <p>...or something like this:</p> 238 <!-- /wp:paragraph --> 236 %2$s...or something like this:%3$s 239 237 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 --> 238 %4$sThe 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.%5$s 243 239 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() ); 240 %2$sAs a new WordPress user, you should go to <a href="%1$s">your dashboard</a> to delete this page and create new pages for your content. Have fun!%3$s' ), 241 admin_url(), 242 '<!-- wp:paragraph --><p>', 243 '</p><!-- /wp:paragraph -->', 244 '<!-- wp:quote --><blockquote class="wp-block-quote"><p>', 245 '</p></blockquote><!-- /wp:quote -->' 246 ); 247 } 247 248 248 249 $first_post_guid = get_option('home') . '/?page_id=2'; 249 250 $wpdb->insert( $wpdb->posts, array(