Make WordPress Core


Ignore:
Timestamp:
06/14/2015 06:55:52 PM (9 years ago)
Author:
nacin
Message:

Tweak the first post/page content to get with the times.

props chriscct7.
fixes #22474.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/upgrade.php

    r32654 r32768  
    157157
    158158        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!' );
    160160
    161161        $first_post = str_replace( "SITE_URL", esc_url( network_home_url() ), $first_post );
    162162        $first_post = str_replace( "SITE_NAME", get_current_site()->site_name, $first_post );
    163163    } 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!' );
    165165    }
    166166
     
    207207    $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:
    208208
    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&#241;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&#241;a coladas. (And gettin' caught in the rain.)</blockquote>
    210210
    211211...or something like this:
Note: See TracChangeset for help on using the changeset viewer.