Yoast\WP\SEO\Services\Health_Check
Ryte_Reports::get_ryte_actions()
Returns the link to Ryte that's appended to every report.
{} Это метод класса: Ryte_Reports{}
Хуков нет.
Возвращает
Строку
. The link to Ryte as an action.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_ryte_actions();
Код Ryte_Reports::get_ryte_actions() Ryte Reports::get ryte actions Yoast 19.2
private function get_ryte_actions() { return sprintf( /* translators: %1$s: Opening tag of the link to the Yoast Ryte website, %2$s: Expands to 'Ryte', %3$s: Link closing tag. */ esc_html__( '%1$sGo to %2$s to analyze your entire site%3$s', 'wordpress-seo' ), '<a href="' . esc_url( $this->shortlinker->get( 'https://yoa.st/rytelp' ) ) . '" target="_blank">', 'Ryte', WPSEO_Admin_Utils::get_new_tab_message() . '</a>' ); }