get_comment filter-hook . WP 2.3.0
Fires after a comment is retrieved.
Usage
add_filter( 'get_comment', 'filter_function_name_3271' ); function filter_function_name_3271( $_comment ){ // filter... return $_comment; }
- $_comment(mixed)
- Comment data.
Where the hook is called
get_comment
wp-includes/comment.php 201
$_comment = apply_filters( 'get_comment', $_comment );