Filters the returned comment type.
$comment_typestring$comment_idstring$commentWP_Commentwp-includes/comment-template.php:1175get_comment_type() * @since 4.1.0 The `$comment_id` and `$comment` parameters were added. * * @param string $comment_type The type of comment, such as 'comment', 'pingback', or 'trackback'. * @param string $comment_id The comment ID as a numeric string. * @param WP_Comment $comment The comment object. */ return apply_filters( 'get_comment_type', $comment->comment_type, $comment->comment_ID, $comment );} /** * Displays the comment type 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.