WP_Customize_Panel::check_capabilities()publicWP 4.0.0

Checks required user capabilities and whether the theme has the feature support required by the panel.

Method of the class: WP_Customize_Panel{}

No Hooks.

Return

true|false. False if theme doesn't support the panel or the user doesn't have the capability.

Usage

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

Changelog

Since 4.0.0 Introduced.
Since 5.9.0 Method was marked non-final.

WP_Customize_Panel::check_capabilities() code WP 6.5.2

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