GC_Comment::add_child()

最后更新于:2021-11-26 11:27:03

GC_Comment::add_child( GC_Comment$child)

Add a child to the comment.

参数

$child

(GC_Comment) (Required) Child comment.

源文件

文件: gc-includes/class-gc-comment.php

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