get_comment_excerpt
Filters the retrieved comment excerpt.
Использование
add_filter( 'get_comment_excerpt', 'wp_kama_get_comment_excerpt_filter', 10, 3 ); /** * Function for `get_comment_excerpt` filter-hook. * * @param string $excerpt The comment excerpt text. * @param string $comment_ID The comment ID as a numeric string. * @param WP_Comment $comment The comment object. * * @return string */ function wp_kama_get_comment_excerpt_filter( $excerpt, $comment_ID, $comment ){ // filter... return $excerpt; }
- $excerpt(строка)
- The comment excerpt text.
- $comment_ID(строка)
- The comment ID as a numeric string.
- $comment(WP_Comment)
- The comment object.
Список изменений
С версии 1.5.0 | Введена. |
С версии 4.1.0 | The $comment_ID and $comment parameters were added. |
Где вызывается хук
get_comment_excerpt
wp-includes/comment-template.php 631
return apply_filters( 'get_comment_excerpt', $excerpt, $comment->comment_ID, $comment );