Yoast\WP\SEO\Services\Health_Check

Report_Builder::set_description()publicYoast 1.0

Sets a description for the test result. This will be the heading for the result in the user interface.

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

Хуков нет.

Возвращает

Report_Builder. This builder.

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

$Report_Builder = new Report_Builder();
$Report_Builder->set_description( $description );
$description(строка) (обязательный)
The description for the test result.

Код Report_Builder::set_description() Yoast 22.4

public function set_description( $description ) {
	$this->description = $description;
	return $this;
}