From a48c03624c9d7246eac79b1b2290ea2dd335f22d Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 25 May 2010 21:59:42 +0000 Subject: [PATCH] Help for edit-comments.php. see #13467 git-svn-id: http://svn.automattic.com/wordpress/trunk@14906 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-comments.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index a47b983b19..231c0a47b0 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -105,6 +105,13 @@ if ( $post_id ) else $title = __('Comments'); +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.') . '

' . + '

' . __('In the Comment column, above each comment it says "Submitted on," followed by the date and time the comment was left on your site. Clicking on the date/time link will take you to that comment on your live site. ') . '

' . + '

' . __('In the In Response To column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The "#" permalink symbol below leads to that post on your live site. The small bubble with the number in it shows how many comments that post has received. If the bubble is gray, you have moderated all comments for that post. If it is blue, there are pending comments. Clicking the bubble will filter the comments screen to show only comments on that post.') . '

' . + '

' . __('Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link below to learn more.') . '

' +); require_once('./admin-header.php'); $mode = ( empty($_GET['mode']) ) ? 'detail' : esc_attr($_GET['mode']);