Yoast\WP\SEO\Services\Health_Check

Links_Table_Reports::get_success_result()publicYoast 1.0

Returns the message for a successful health check.

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

Хуков нет.

Возвращает

Строку[]. The message as a WordPress site status report.

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

$Links_Table_Reports = new Links_Table_Reports();
$Links_Table_Reports->get_success_result();

Код Links_Table_Reports::get_success_result() Yoast 22.4

public function get_success_result() {
	return $this->get_report_builder()
		->set_label( \__( 'The text link counter is working as expected', 'wordpress-seo' ) )
		->set_status_good()
		->set_description( $this->get_success_description() )
		->build();
}