Yoast\WP\SEO\Services\Health_Check
Ryte_Reports::get_not_indexable_result_actions()
Returns the actions for when the site is not indexable.
{} Это метод класса: Ryte_Reports{}
Хуков нет.
Возвращает
Строку
. The actions for when the site is not indexable.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_not_indexable_result_actions();
Код Ryte_Reports::get_not_indexable_result_actions() Ryte Reports::get not indexable result actions Yoast 19.2
private function get_not_indexable_result_actions() { return sprintf( /* translators: %1$s: Opening tag of the link to the Yoast help center, %2$s: Link closing tag. */ esc_html__( '%1$sRead more about troubleshooting search engine visibility.%2$s', 'wordpress-seo' ), '<a href="' . esc_url( $this->shortlinker->get( 'https://yoa.st/onpageindexerror' ) ) . '" target="_blank">', WPSEO_Admin_Utils::get_new_tab_message() . '</a>' ) . '<br /><br />'; }