WPSEO_Admin_Pages::get_webinar_shortlink()privateYoast 1.0

Returns the appropriate shortlink for the Webinar.

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

Хуков нет.

Возвращает

Строку. The shortlink for the Webinar.

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

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

Код WPSEO_Admin_Pages::get_webinar_shortlink() Yoast 24.0

private function get_webinar_shortlink() {
	if ( YoastSEO()->helpers->product->is_premium() ) {
		return WPSEO_Shortlinker::get( 'https://yoa.st/webinar-intro-first-time-config-premium' );
	}

	return WPSEO_Shortlinker::get( 'https://yoa.st/webinar-intro-first-time-config' );
}