comment_text()
Display the text of the current comment.
Uses: get_comment_text()
Hooks from the function
Return
null
. Nothing (null).
Usage
comment_text( $comment_id, $args );
- $comment_id(int|WP_Comment)
- WP_Comment or ID of the comment for which to print the text.
Default: current comment - $args(array)
- An array of arguments.
Default: empty array
Examples
#1 Demo
Display the text of the comment with the name of the comment author in the LI list
<li> Comment: <?php comment_author(); ?>:<br /> <?php comment_text(); ?> </li>
Notes
Changelog
Since 0.71 | Introduced. |
Since 4.4.0 | Added the ability for $comment_id to also accept a WP_Comment object. |
comment_text() comment text code WP 6.7.1
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 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 ); }