WP_Customize_Panel::check_capabilities()

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


Return

(bool) False if theme doesn't support the panel or the user doesn't have the capability.


Source

File: wp-includes/class-wp-customize-panel.php

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

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

		return true;
	}


Changelog

Changelog
Version Description
WP-4.0.0 Introduced.