Changeset 19110 for trunk/wp-admin/index.php
- Timestamp:
- 11/02/2011 02:38:37 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/index.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/index.php
r19014 r19110 38 38 $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 39 40 $current_screen->add_help_tab( array(40 get_current_screen()->add_help_tab( array( 41 41 'id' => 'help-navigation', 42 42 'title' => __('Navigation'), … … 49 49 $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>'; 50 50 51 $current_screen->add_help_tab( array(51 get_current_screen()->add_help_tab( array( 52 52 'id' => 'help-layout', 53 53 'title' => __('Layout'), … … 65 65 $help_content .= '<p>' . __('<strong>Plugins</strong> - Features the most popular, newest, and recently updated plugins from the WordPress.org Plugin Directory.') . '</p>'; 66 66 67 $current_screen->add_help_tab( array(67 get_current_screen()->add_help_tab( array( 68 68 'id' => 'help-content', 69 69 'title' => __('Content'), … … 71 71 ) ); 72 72 73 $current_screen->add_help_sidebar(73 get_current_screen()->add_help_sidebar( 74 74 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 75 75 '<p>' . __( '<a href="http://codex.wordpress.org/Dashboard_Screen" target="_blank">Documentation on Dashboard</a>' ) . '</p>' .
Note: See TracChangeset
for help on using the changeset viewer.