Yoast\WP\SEO\Services\Health_Check

Links_Table_Reports::get_links_table_not_accessible_result()publicYoast 1.0

Returns the message for a failed health check.

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

Хуков нет.

Возвращает

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

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

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

Код Links_Table_Reports::get_links_table_not_accessible_result() Yoast 22.3

public function get_links_table_not_accessible_result() {
	return $this->get_report_builder()
		->set_label( \__( 'The text link counter feature is not working as expected', 'wordpress-seo' ) )
		->set_status_recommended()
		->set_description( $this->get_links_table_not_accessible_description() )
		->set_actions( $this->get_actions() )
		->build();
}