Summery Summery
Retrieve comment meta field for a comment.
Syntax Syntax
Parameters Parameters
- $comment_id
-
(Required) Comment ID.
- $key
-
(Optional) The meta key to retrieve. By default, returns data for all keys.
Default value: ''
- $single
-
(Optional) Whether to return a single value.
Default value: false
Return Return
(mixed) Will be an array if $single is false. Will be value of meta data field if $single is true.
Source Source
File: wp-includes/comment.php
* * @param int $comment_id Comment ID. * @param string $key Optional. The meta key to retrieve. By default,
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |