Yoast_Form::is_tracking_on_subsite()protectedYoast 1.0

Determines whether we are dealing with the Usage tracking feature on a multisite subsite. This feature requires specific behavior for the toggle switch.

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

Хуков нет.

Возвращает

true|false. True if we are dealing with the Usage tracking feature on a multisite subsite.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->is_tracking_on_subsite( $feature_setting );
$feature_setting(строка) (обязательный)
The feature setting.

Код Yoast_Form::is_tracking_on_subsite() Yoast 22.4

protected function is_tracking_on_subsite( $feature_setting ) {
	return ( $feature_setting === 'tracking' && ! is_network_admin() && ! is_main_site() );
}