WP_Customize_Panel::check_capabilities() WordPress Method
The check_capabilities() method is used to check if the current user has the required capability to access a panel. If the user does not have the required capability, the panel will not be displayed.
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
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; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Method was marked non-final. |
4.0.0 | Introduced. |