Changeset 18853 for trunk/wp-admin/index.php
- Timestamp:
- 10/01/2011 12:24:44 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/index.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/index.php
r18797 r18853 33 33 $help_overview = '<p>' . __('Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab in the top bar.') . '</p>'; 34 34 35 $current_screen->add_help_tab( 'overview', __('Overview'), $help_overview ); 35 $current_screen->add_help_tab( array( 36 'title' => __('Overview'), 37 'content' => $help_overview, 38 ) ); 36 39 37 40 $help_navigation = '<p>' . __('The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.') . '</p>'; 38 41 $help_navigation .= '<p>' . __('Links in the “admin bar” at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.') . '</p>'; 39 42 40 $current_screen->add_help_tab( 'navigation', __('Navigation'), $help_navigation ); 43 $current_screen->add_help_tab( array( 44 'title' => __('Navigation'), 45 'content' => $help_navigation, 46 ) ); 41 47 42 48 $help_layout = '<p>' . __('You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.') . '</p>'; … … 45 51 $help_layout .= '<p>' . __('<strong>Box Controls</strong> - Click the title bar of the box to expand or collapse it. In addition, some box have configurable content, and will show a “Configure” link in the title bar if you hover over it.') . '</p>'; 46 52 47 $current_screen->add_help_tab( 'layout', __('Layout'), $help_layout ); 53 $current_screen->add_help_tab( array( 54 'title' => __('Layout'), 55 'content' => $help_layout, 56 ) ); 48 57 49 58 $help_content = '<p>' . __('The boxes on your Dashboard screen are:') . '</p>'; … … 57 66 $help_content .= '<p>' . __('<strong>Plugins</strong> - Features the most popular, newest, and recently updated plugins from the WordPress.org Plugin Directory.') . '</p>'; 58 67 59 $current_screen->add_help_tab( 'content', __('Content'), $help_content ); 68 $current_screen->add_help_tab( array( 69 'title' => __('Content'), 70 'content' => $help_content, 71 ) ); 60 72 61 73 $current_screen->add_help_sidebar(
Note: See TracChangeset
for help on using the changeset viewer.