WP_Customize_Setting::check_capabilities(): bool

In this article

Validate user capabilities whether the theme supports the setting.

Return

bool False if theme doesn’t support the setting or user can’t change setting, otherwise true.

Source

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;
}

Changelog

VersionDescription
3.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.