WP_Comment::get_child( int $child_id )
Get a child comment by ID.
Description Description
Parameters Parameters
- $child_id
-
(int) (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; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |