WP_Customize_Setting::check_capabilities()publicWP 3.4.0

Validate user capabilities whether the theme supports the setting.

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

Хуков нет.

Возвращает

true|false. False if theme doesn't support the setting or user can't change setting, otherwise true.

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

$WP_Customize_Setting = new WP_Customize_Setting();
$WP_Customize_Setting->check_capabilities();

Список изменений

С версии 3.4.0 Введена.

Код WP_Customize_Setting::check_capabilities() WP 6.5.2

final public function check_capabilities() {
	if ( $this->capability && ! current_user_can( $this->capability ) ) {
		return false;
	}

	if ( $this->theme_supports && ! current_theme_supports( ...(array) $this->theme_supports ) ) {
		return false;
	}

	return true;
}