Yoast\WP\SEO\Services\Health_Check
Links_Table_Reports::get_actions
Returns the actions that the user should take when the links table is not accessible.
Метод класса: Links_Table_Reports{}
Хуков нет.
Возвращает
string. The actions as a string.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_actions();
Код Links_Table_Reports::get_actions() Links Table Reports::get actions Yoast 28.4
private function get_actions() {
return \sprintf(
/* translators: 1: Link to the Yoast help center, 2: Link closing tag. */
\esc_html__( '%1$sFind out how to solve this problem on our help center%2$s.', 'wordpress-seo' ),
'<a href="' . $this->shortlinker->get( 'https://yoa.st/3zv' ) . '" target="_blank">',
WPSEO_Admin_Utils::get_new_tab_message() . '</a>',
);
}