WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Function Reference/get comment text

Description

Retrieve the text of the current comment.

Use comment_text to display the comment text.

Usage

<?php get_comment_text$comment_ID ?>

Parameters

comment_ID
(integer) (optional) The ID of the comment for which to get the text.
Default: 0 (the current comment)

Return

(string) 
The comment content

Example

<?php $current_comment = get_comment_text(); ?>

Notes

Changelog

  • Since 1.5.0

Source File

get_comment_text() is located in wp-includes/comment-template.php

Related

Comments Functions

See also index of Function Reference and index of Template Tags.