From e7f618d86e856b2542e803e7034ca7d29b8c2a16 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 14 Jun 2015 18:56:50 +0000 Subject: [PATCH] Tweak the first post/page content to get with the times. props chriscct7. fixes #22474. Built from https://develop.svn.wordpress.org/trunk@32768 git-svn-id: http://core.svn.wordpress.org/trunk@32739 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/upgrade.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index ff34c2a4ec..e11bab973d 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -156,12 +156,12 @@ function wp_install_defaults( $user_id ) { $first_post = get_site_option( 'first_post' ); if ( empty($first_post) ) - $first_post = __( 'Welcome to SITE_NAME. This is your first post. Edit or delete it, then start blogging!' ); + $first_post = __( 'Welcome to SITE_NAME. This is your first post. Edit or delete it, then start writing!' ); $first_post = str_replace( "SITE_URL", esc_url( network_home_url() ), $first_post ); $first_post = str_replace( "SITE_NAME", get_current_site()->site_name, $first_post ); } else { - $first_post = __('Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!'); + $first_post = __( 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!' ); } $wpdb->insert( $wpdb->posts, array( @@ -206,7 +206,7 @@ To delete a comment, just log in and view the post's comments. There you wi // 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: -
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.)
+
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.)
...or something like this: diff --git a/wp-includes/version.php b/wp-includes/version.php index deda15bb71..cc63887323 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32767'; +$wp_version = '4.3-alpha-32768'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.