Yoast\WP\SEO\Services\Health_Check

Links_Table_Reports::get_links_table_not_accessible_description()privateYoast 1.0

Returns the description for when the health couldn't access the links table.

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

Хуков нет.

Возвращает

Строку. The description as a string.

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

// private - только в коде основоного (родительского) класса
$result = $this->get_links_table_not_accessible_description();

Код Links_Table_Reports::get_links_table_not_accessible_description() Yoast 22.4

private function get_links_table_not_accessible_description() {
	return \sprintf(
		/* translators: 1: Yoast SEO. */
		\__( 'For this feature to work, %1$s needs to create a table in your database. We were unable to create this table automatically.', 'wordpress-seo' ),
		'Yoast SEO'
	);
}