Filters the comment author's returned IP address.
$comment_author_ipstring$comment_idstring$commentWP_Commentwp-includes/comment-template.php:332get_comment_author_IP() * @since 4.1.0 The `$comment_id` and `$comment` parameters were added. * * @param string $comment_author_ip The comment author's IP address, or an empty string if it's not available. * @param string $comment_id The comment ID as a numeric string. * @param WP_Comment $comment The comment object. */ return apply_filters( 'get_comment_author_IP', $comment->comment_author_IP, $comment->comment_ID, $comment ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase} /** * Displays the IP address of the author of the current comment. * * @since 0.71Introduced in 1.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.