Changeset 46457
- Timestamp:
- 10/10/2019 07:05:57 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r46451 r46457 2192 2192 'post_type' => 'page', 2193 2193 'post_title' => _x( 'Home', 'Theme starter content' ), 2194 'post_content' => _x( 'Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.', 'Theme starter content' ), 2194 'post_content' => sprintf( 2195 "<!-- wp:paragraph -->\n<p>%s</p>\n<!-- /wp:paragraph -->", 2196 _x( 'Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.', 'Theme starter content' ) 2197 ), 2195 2198 ), 2196 2199 'about' => array( 2197 2200 'post_type' => 'page', 2198 2201 'post_title' => _x( 'About', 'Theme starter content' ), 2199 'post_content' => _x( 'You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.', 'Theme starter content' ), 2202 'post_content' => sprintf( 2203 "<!-- wp:paragraph -->\n<p>%s</p>\n<!-- /wp:paragraph -->", 2204 _x( 'You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.', 'Theme starter content' ) 2205 ), 2200 2206 ), 2201 2207 'contact' => array( 2202 2208 'post_type' => 'page', 2203 2209 'post_title' => _x( 'Contact', 'Theme starter content' ), 2204 'post_content' => _x( 'This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.', 'Theme starter content' ), 2210 'post_content' => sprintf( 2211 "<!-- wp:paragraph -->\n<p>%s</p>\n<!-- /wp:paragraph -->", 2212 _x( 'This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.', 'Theme starter content' ) 2213 ), 2205 2214 ), 2206 2215 'blog' => array( … … 2216 2225 'post_type' => 'page', 2217 2226 'post_title' => _x( 'A homepage section', 'Theme starter content' ), 2218 'post_content' => _x( 'This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.', 'Theme starter content' ), 2227 'post_content' => sprintf( 2228 "<!-- wp:paragraph -->\n<p>%s</p>\n<!-- /wp:paragraph -->", 2229 _x( 'This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.', 'Theme starter content' ) 2230 ), 2219 2231 ), 2220 2232 ),
Note: See TracChangeset
for help on using the changeset viewer.