Fires after a comment is retrieved.
$_commentWP_Comment|nullwp-includes/comment.php:297get_comment() * Fires after a comment is retrieved. * * @since 2.3.0 * * @param WP_Comment|null $_comment Comment data. */ $_comment = apply_filters( 'get_comment', $_comment ); if ( ! ( $_comment instanceof WP_Comment ) ) { return null; } if ( OBJECT === $output ) { return $_comment;Introduced in 2.3.0. One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
$_comment retyped from WP_Comment to WP_Comment|null.verified against source