diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index cce196b789..37ee93e1c5 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -111,6 +111,10 @@ else add_screen_option( 'per_page', array('label' => _x( 'Comments', 'comments per page (screen options)' )) ); +$current_screen->add_screen_options( +'
test
' +); + add_contextual_help( $current_screen, '' . __( 'You can manage comments made on your site similar to the way you manage Posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the Bulk Actions.' ) . '
' . '' . __( 'A yellow row means the comment is waiting for you to moderate it.' ) . '
' . '' . __( 'In the Author column, in addition to the author’s name, email address, and blog URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '
' . diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php index d2a4ed93c1..32b46d8bf9 100644 --- a/wp-admin/edit-form-advanced.php +++ b/wp-admin/edit-form-advanced.php @@ -161,13 +161,17 @@ do_action('do_meta_boxes', $post_type, 'side', $post); $current_screen->add_option('layout_columns', array('max' => 2, 'default' => 'auto') ); +$current_screen->add_screen_options( +'test
' +); + if ( 'post' == $post_type ) { $customize_display = '' . __('The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop, and can minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.') . '
'; $current_screen->add_help_tab( array( 'id' => 'customize-display', 'title' => __('Customizing This Display'), - 'content' => $customize_display, + 'content' => $customize_display ) ); $title_and_editor = '' . __('Title - Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.') . '
'; diff --git a/wp-admin/edit-link-form.php b/wp-admin/edit-link-form.php index 3dbc0d41cf..ccd8a26644 100644 --- a/wp-admin/edit-link-form.php +++ b/wp-admin/edit-link-form.php @@ -39,15 +39,18 @@ do_action('do_meta_boxes', 'link', 'side', $link); add_screen_option('layout_columns', array('max' => 2, 'default' => 'auto') ); -add_contextual_help($current_screen, - '' . __( 'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.' ) . '
' . - '' . __( 'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don’t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.' ) . '
' . - '' . __( 'XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '
' . - '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Creating Links' ) . '
' . - '' . __( 'Support Forums' ) . '
' +$current_screen->add_screen_options( +'test
' ); +add_contextual_help( $current_screen, ' +' . __( 'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.' ) . '
+' . __( 'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don’t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.' ) . '
+' . __( 'XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '
+' . __( 'For more information:' ) . '
+' . __( 'Documentation on Creating Links' ) . '
+' . __( 'Support Forums' ) . '
' ); + require_once ('admin-header.php'); ?> diff --git a/wp-admin/edit-tags.php b/wp-admin/edit-tags.php index b0e9fc55e4..ca63fa9cd7 100644 --- a/wp-admin/edit-tags.php +++ b/wp-admin/edit-tags.php @@ -30,6 +30,10 @@ if ( 'post' != $post_type ) { add_screen_option( 'per_page', array('label' => $title, 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page') ); +$current_screen->add_screen_options( +'test
' +); + switch ( $wp_list_table->current_action() ) { case 'add-tag': diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 933219ea6a..587ed2b3ba 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -148,6 +148,12 @@ wp_enqueue_script('inline-edit-post'); $title = $post_type_object->labels->name; +add_screen_option( 'per_page', array('label' => $title, 'default' => 20) ); + +$current_screen->add_screen_options( +'test
' +); + if ( 'post' == $post_type ) { add_contextual_help($current_screen, '' . __('You can customize the display of this screen in a number of ways:') . '
' . @@ -180,8 +186,6 @@ if ( 'post' == $post_type ) { ); } -add_screen_option( 'per_page', array('label' => $title, 'default' => 20) ); - require_once('./admin-header.php'); ?>