Make WordPress Core


Ignore:
Timestamp:
10/19/2011 04:41:26 PM (14 years ago)
Author:
koopersmith
Message:

Welcome panel contents and functionality. see #11651.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/index.php

    r18941 r19007  
    2929
    3030
    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
     33if ( current_user_can( 'edit_theme_options' ) )
     34    $overview .= '<a href="#" class="welcome-panel-open">' . __('Show the welcome panel.') . '</a>';
     35
     36add_screen_option( 'overview', $overview );
    3237
    3338// Help tabs
Note: See TracChangeset for help on using the changeset viewer.