Make WordPress Core


Ignore:
Timestamp:
12/01/2011 02:22:07 AM (14 years ago)
Author:
ryan
Message:

Use WP_Screen::add_help_tab(). see #19020

File:
1 edited

Legend:

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

    r19122 r19514  
    2323$parent_file = 'index.php';
    2424
    25 add_contextual_help($current_screen,
    26     '<p>' . __('Until WordPress 3.0, running multiple sites required using WordPress MU instead of regular WordPress. In version 3.0, these applications have merged. If you are a former MU user, you should be aware of the following changes:') . '</p>' .
    27     '<ul><li>' . __('Site Admin is now Super Admin (we highly encourage you to get yourself a cape!).') . '</li>' .
    28     '<li>' . __('Blogs are now called Sites; Site is now called Network.') . '</li></ul>' .
    29     '<p>' . __('The Right Now box provides the network administrator with links to the screens to either create a new site or user, or to search existing users and sites. Screens for Sites and Users are also accessible through the left-hand navigation in the Network Admin section.') . '</p>'
    30 );
     25    get_current_screen()->add_help_tab( array(
     26        'id'      => 'overview',
     27        'title'   => __('Overview'),
     28        'content' =>
     29            '<p>' . __('Until WordPress 3.0, running multiple sites required using WordPress MU instead of regular WordPress. In version 3.0, these applications have merged. If you are a former MU user, you should be aware of the following changes:') . '</p>' .
     30            '<ul><li>' . __('Site Admin is now Super Admin (we highly encourage you to get yourself a cape!).') . '</li>' .
     31            '<li>' . __('Blogs are now called Sites; Site is now called Network.') . '</li></ul>' .
     32            '<p>' . __('The Right Now box provides the network administrator with links to the screens to either create a new site or user, or to search existing users and sites. Screens for Sites and Users are also accessible through the left-hand navigation in the Network Admin section.') . '</p>'
     33) );
    3134
    3235get_current_screen()->set_help_sidebar(
Note: See TracChangeset for help on using the changeset viewer.