get_comment_ID()
Outputs the ID of the current comment. Used in the comments loop.
Used By: comment_ID()
Hooks from the function
Returns
String. ID of the comment.
Usage
get_comment_ID();
Examples
#1 Output a link with an anchor to a comment
The text of which will be the commenter's name. The code should be used in the comment loop:
<div id="comment-<?php echo get_comment_ID() ?>"> Comment by <?php comment_author() ?>: </div> <div class="comment-text"><?php comment_text() ?></div>
Changelog
| Since 1.5.0 | Introduced. |
get_comment_ID() get comment ID code WP 6.8.3
function get_comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
$comment = get_comment();
$comment_id = ! empty( $comment->comment_ID ) ? $comment->comment_ID : '0';
/**
* Filters the returned comment ID.
*
* @since 1.5.0
* @since 4.1.0 The `$comment` parameter was added.
*
* @param string $comment_id The current comment ID as a numeric string.
* @param WP_Comment $comment The comment object.
*/
return apply_filters( 'get_comment_ID', $comment_id, $comment ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase
}