Summery Summery
Get a child comment by ID.
Syntax Syntax
Parameters Parameters
- $child_id
-
(Required) ID of the child.
Return Return
(WP_Comment|bool) Returns the comment object if found, otherwise false.
Source Source
File: wp-includes/class-wp-comment.php
*/ public function get_child( $child_id ) { if ( isset( $this->children[ $child_id ] ) ) { return $this->children[ $child_id ]; } return false;
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |