| [ Index ] |
PHP Cross Reference of WordPress |
[Source view] [Print] [Project Stats]
Comment API: WP_Comment class
| File Size: | 379 lines (9 kb) |
| Included or required: | 0 times |
| Referenced: | 0 times |
| Includes or requires: | 0 files |
| get_instance( $id ) X-Ref |
| Retrieves a WP_Comment instance. since: 4.4.0 param: int $id Comment ID. return: WP_Comment|false Comment object, otherwise false. |
| __construct( $comment ) X-Ref |
| Constructor. Populates properties with object vars. since: 4.4.0 param: WP_Comment $comment Comment object. |
| to_array() X-Ref |
| Convert object to array. since: 4.4.0 return: array Object as array. |
| get_children( $args = array() X-Ref |
| Get the children of a comment. since: 4.4.0 param: array $args { return: WP_Comment[] Array of `WP_Comment` objects. |
| add_child( WP_Comment $child ) X-Ref |
| Add a child to the comment. Used by `WP_Comment_Query` when bulk-filling descendants. since: 4.4.0 param: WP_Comment $child Child comment. |
| get_child( $child_id ) X-Ref |
| Get a child comment by ID. since: 4.4.0 param: int $child_id ID of the child. return: WP_Comment|false Returns the comment object if found, otherwise false. |
| populated_children( $set ) X-Ref |
| Set the 'populated_children' flag. This flag is important for ensuring that calling `get_children()` on a childless comment will not trigger unneeded database queries. since: 4.4.0 param: bool $set Whether the comment's children have already been populated. |
| __isset( $name ) X-Ref |
| Check whether a non-public property is set. If `$name` matches a post field, the comment post will be loaded and the post's value checked. since: 4.4.0 param: string $name Property name. return: bool |
| __get( $name ) X-Ref |
| Magic getter. If `$name` matches a post field, the comment post will be loaded and the post's value returned. since: 4.4.0 param: string $name return: mixed |
| Generated: Wed Nov 5 01:00:02 2025 | Cross-referenced by PHPXref 0.7.1 |