Yoast\WP\SEO\Services\Health_Check
Ryte_Reports::get_response_error_result_actions()
Returns the actions for when the health check got an error response from Ryte.
{} Это метод класса: Ryte_Reports{}
Хуков нет.
Возвращает
Строку
. The actions for when the health check got an error response from Ryte.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_response_error_result_actions();
Код Ryte_Reports::get_response_error_result_actions() Ryte Reports::get response error result actions Yoast 19.2
private function get_response_error_result_actions() { return sprintf( /* translators: %1$s: Opening tag of the link to the Yoast help center, %2$s: Link closing tag. */ esc_html__( 'If this is a live site, %1$sit is recommended that you figure out why the check failed.%2$s', 'wordpress-seo' ), '<a href="' . esc_url( $this->shortlinker->get( 'https://yoa.st/onpagerequestfailed' ) ) . '" target="_blank">', WPSEO_Admin_Utils::get_new_tab_message() . '</a>' ) . '<br /><br />'; }