Make WordPress Core


Ignore:
Timestamp:
11/28/2011 04:40:36 PM (14 years ago)
Author:
koopersmith
Message:

Update help content for export page. props Ipstenu, see #19020.

File:
1 edited

Legend:

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

    r19119 r19462  
    3939add_action( 'admin_head', 'add_js' );
    4040
    41 add_contextual_help( $current_screen,
    42     '<p>' . __('You can export a file of your site&#8217;s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to  limit the export by category, author, date range by month, or publishing status.') . '</p>' .
    43     '<p>' . __('Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.') . '</p>'
    44 );
     41get_current_screen()->add_help_tab( array(
     42    'id'      => 'export',
     43    'title'   => __('Export'),
     44    'content' => '<p>' . __('You can export a file of your site&#8217;s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to  limit the export by category, author, date range by month, or publishing status.') . '</p>' .
     45        '<p>' . __('Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.') . '</p>',
     46) );
    4547
    4648get_current_screen()->set_help_sidebar(
Note: See TracChangeset for help on using the changeset viewer.