| 874 | | $output .= '<li class="recentcomments">' . /* translators: comments widget: 1: comment author, 2: post link */ sprintf(_x('%1$s on %2$s', 'widgets'), get_comment_author_link(), '<a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '</li>'; |
| | 874 | $output .= '<li class="recentcomments">'; |
| | 875 | /* translators: comments widget: 1: comment author, 2: post link */ |
| | 876 | $output .= sprintf( _x( '%1$s on %2$s', 'widgets' ), |
| | 877 | '<span class="comment-author-link">' . get_comment_author_link() . '</span>', |
| | 878 | '<a href="' . esc_url( get_comment_link( $comment->comment_ID ) ) . '">' . get_the_title( $comment->comment_post_ID ) . '</a>' |
| | 879 | ); |
| | 880 | $output .= '</li>'; |