WP_Comment::populated_children
Sets the 'populated_children' flag.
This flag is important for ensuring that calling get_children() a childless comment will not trigger unneeded database queries.
Method of the class: WP_Comment{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Comment = new WP_Comment(); $WP_Comment->populated_children( $set );
- $set(true|false) (required)
- Whether the comment's children have already been populated.
Changelog
| Since 4.4.0 | Introduced. |
WP_Comment::populated_children() WP Comment::populated children code WP 6.9.1
public function populated_children( $set ) {
$this->populated_children = (bool) $set;
}