WP_Comment::add_child( WP_Comment $child )

Add a child to the comment.


Description Description

Used by WP_Comment_Query when bulk-filling descendants.


Parameters Parameters

$child

(WP_Comment) (Required) Child comment.


Top ↑

Source Source

File: wp-includes/class-wp-comment.php

	public function add_child( WP_Comment $child ) {
		$this->children[ $child->comment_ID ] = $child;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.