Changeset 19007 for trunk/wp-admin/index.php
- Timestamp:
- 10/19/2011 04:41:26 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/index.php
r18941 r19007 29 29 30 30 31 add_screen_option( '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>' ); 31 $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>'; 32 33 if ( current_user_can( 'edit_theme_options' ) ) 34 $overview .= '<a href="#" class="welcome-panel-open">' . __('Show the welcome panel.') . '</a>'; 35 36 add_screen_option( 'overview', $overview ); 32 37 33 38 // Help tabs
Note: See TracChangeset
for help on using the changeset viewer.