Changeset 12366
- Timestamp:
- 12/10/2009 10:45:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/upgrade.php
r12365 r12366 163 163 'post_date' => $now, 164 164 'post_date_gmt' => $now_gmt, 165 'post_content' => sprintf(__(' 166 Welcome to WordPress! This post contains important information. After you read it, you can make it private to hide it from visitors but still have the information handy for future reference. 167 168 First things first: 169 <ul> 170 <li><a href="%1$s" title="Subscribe to the WordPress mailing list for Release Notifications">Subscribe to the WordPress mailing list for release notifications</a></li> 171 </ul> 172 As a subscriber, you will receive an email every time an update is available (and only then). This will make it easier to keep your site up to date, and secure from evildoers. 173 When a new version is released, <a href="%2$s" title="If you are already logged in, this will take you directly to the Dashboard">log in to the Dashboard</a> and follow the instructions. 174 Upgrading is a couple of clicks! 175 176 Then you can start enjoying the WordPress experience: 177 <ul> 178 <li>Edit your personal information at <a href="%3$s" title="Edit settings like your password, your display name and your contact information">Users › Your Profile</a></li> 179 <li>Start publishing at <a href="%4$s" title="Create a new post">Posts › Add New</a> and at <a href="%5$s" title="Create a new page">Pages › Add New</a></li> 180 <li>Browse and install plugins at <a href="%6$s" title="Browse and install plugins at the official WordPress repository directly from your Dashboard">Plugins › Add New</a></li> 181 <li>Browse and install themes at <a href="%7$s" title="Browse and install themes at the official WordPress repository directly from your Dashboard">Appearance › Add New Themes</a></li> 182 <li>Modify and prettify your website’s links at <a href="%8$s" title="For example, select a link structure like: http://example.com/1999/12/post-name">Settings › Permalinks</a></li> 183 <li>Import content from another system or WordPress site at <a href="%9$s" title="WordPress comes with importers for the most common publishing systems">Tools › Import</a></li> 184 <li>Find answers to your questions at the <a href="%10$s" title="The official WordPress documentation, maintained by the WordPress community">WordPress Codex</a></li> 185 </ul> 186 To keep this post for reference, <a href="%11$s" title="Click to edit the content and settings of this post">click to edit it</a>, go to the Publish box and change its Visibility from Public to Private. 187 188 Thank you for selecting WordPress. We wish you happy publishing! 189 190 PS. Not yet subscribed for update notifications? <a href="%1$s" title="Subscribe to the WordPress mailing list for Release Notifications">Do it now!</a> 191 '), esc_attr_x('http://wordpress.org/download/','url for release notification mailing list subscription.'), admin_url(''), admin_url('profile.php'), admin_url('post-new.php'), admin_url('page-new.php'), 192 admin_url('plugin-install.php'), admin_url('theme-install.php'), admin_url('options-permalink.php'), admin_url('import.php'), esc_attr_x('http://codex.wordpress.org','url for codex documentation.'), admin_url('post.php?action=edit&post=1')), 165 'post_content' => __('Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!'), 193 166 'post_excerpt' => '', 194 'post_title' => __(' Welcome!'),167 'post_title' => __('Hello world!'), 195 168 /* translators: Default post slug */ 196 'post_name' => _x(' welcome', 'Default post slug'),169 'post_name' => _x('hello-world', 'Default post slug'), 197 170 'post_modified' => $now, 198 171 'post_modified_gmt' => $now_gmt,
Note: See TracChangeset
for help on using the changeset viewer.