Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_email

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
690
691           echo "<strong>"; comment_author( $comment ); echo '</strong><br />';
692           if ( ! empty( $author_url_display ) ) {
693                printf( '<a href="%s">%s</a><br />', esc_url( $author_url ), esc_html( $author_url_display ) );
694           }
695
696           if ( $this->user_can ) {
697                if ( ! empty( $comment->comment_author_email ) ) {
698                     /** This filter is documented in wp-includes/comment-template.php */
699                     $email = apply_filters( 'comment_email', $comment->comment_author_email, $comment );
700
701                     if ( ! empty( $email ) && '@' !== $email ) {
702                          printf( '<a href="%1$s">%2$s</a><br />', esc_url( 'mailto:' . $email ), esc_html( $email ) );
703                     }
704                }
705
706                $author_ip = get_comment_author_IP( $comment );
707                if ( $author_ip ) {
708                     $author_ip_url = add_query_arg( array( 's' => $author_ip, 'mode' => 'detail' ), admin_url( 'edit-comments.php' ) );