diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index c4aed30f03..e5a42c1711 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -338,29 +338,30 @@ function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Com } } - echo ''; + $comments_popup_link .= ' title="' . sprintf( __('Comment on %s'), $title ) .'">'; comments_number($zero, $one, $more, $number); - echo ''; + $comments_popup_link .= ''; + echo apply_filters('comments_popup_link', $comments_popup_link); } ?>