comment_text() – Displays the text of the current comment.
You appear to be a bot. Output may be restricted
Description
Displays the text of the current comment.
Usage
comment_text( $comment_ID, $args );
Parameters
- $comment_ID
- ( int|WP_Comment ) optional – WP_Comment or ID of the comment for which to print the text. Default current comment.
- $args
- ( array ) optional – Optional. An array of arguments. Default empty array.
Returns
void
Source
File name: wordpress/wp-includes/comment-template.php
Lines:
1 to 17 of 17
function comment_text( $comment_ID = 0, $args = array() ) { $comment = get_comment( $comment_ID ); $comment_text = get_comment_text( $comment, $args ); /** * Filters the text of a comment to be displayed. * * @since 1.2.0 * * @see Walker_Comment::comment() * * @param string $comment_text Text of the current comment. * @param WP_Comment|null $comment The comment object. Null if not found. * @param array $args An array of arguments. */ echo apply_filters( 'comment_text', $comment_text, $comment, $args ); }