Changeset 19528 for trunk/wp-admin/edit.php
- Timestamp:
- 12/01/2011 04:51:35 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r19511 r19528 153 153 'id' => 'overview', 154 154 'title' => __('Overview'), 155 'content' => 155 'content' => 156 156 '<p>' . __('This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.') . '</p>' 157 157 ) ); … … 159 159 'id' => 'screen-content', 160 160 'title' => __('Screen Content'), 161 'content' => 161 'content' => 162 162 '<p>' . __('You can customize the display of this screen’s contents in a number of ways:') . '</p>' . 163 163 '<ul>' . … … 171 171 'id' => 'action-links', 172 172 'title' => __('Available Actions'), 173 'content' => 173 'content' => 174 174 '<p>' . __('Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:') . '</p>' . 175 175 '<ul>' . … … 178 178 '<li>' . __('<strong>Trash</strong> removes your post from this list and places it in the trash, from which you can permanently delete it.') . '</li>' . 179 179 '<li>' . __('<strong>Preview</strong> will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.') . '</li>' . 180 '</ul>' 180 '</ul>' 181 181 ) ); 182 182 get_current_screen()->add_help_tab( array( 183 183 'id' => 'bulk-actions', 184 184 'title' => __('Bulk Actions'), 185 'content' => 185 'content' => 186 186 '<p>' . __('You can also edit or move multiple posts to the trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.') . '</p>' . 187 187 '<p>' . __('When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears.') . '</p>' … … 193 193 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 194 194 ); 195 195 196 196 } elseif ( 'page' == $post_type ) { 197 197 get_current_screen()->add_help_tab( array( 198 198 'id' => 'overview', 199 199 'title' => __('Overview'), 200 'content' => 200 'content' => 201 201 '<p>' . __('Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.') . '</p>' 202 202 ) ); … … 204 204 'id' => 'managing-pages', 205 205 'title' => __('Managing Pages'), 206 'content' => 206 'content' => 207 207 '<p>' . __('Managing pages is very similar to managing posts, and the screens can be customized in the same way.') . '</p>' . 208 208 '<p>' . __('You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once.') . '</p>'
Note: See TracChangeset
for help on using the changeset viewer.