WPCF7_HTMLFormatter::append_comment()publicCF7 1.0

Appends an HTML comment to the output property.

Метод класса: WPCF7_HTMLFormatter{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WPCF7_HTMLFormatter = new WPCF7_HTMLFormatter();
$WPCF7_HTMLFormatter->append_comment( $tag );
$tag(строка) (обязательный)
An HTML comment.

Код WPCF7_HTMLFormatter::append_comment() CF7 5.9.3

public function append_comment( $tag ) {
	$this->output .= $tag;
}