WP_Customize_Nav_Menus_Panel::check_capabilities() WordPress Method
The WP_Customize_Nav_Menus_Panel::check_capabilities() method is used to check if the current user has the required capabilities to access this panel.
WP_Customize_Nav_Menus_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/customize/class-wp-customize-nav-menus-panel.php
public function check_capabilities() { /* * WP_Customize_Panel::$theme_supports only supports checking one * theme_supports, so instead we override check_capabilities(). */ if ( ! current_theme_supports( 'menus' ) && ! current_theme_supports( 'widgets' ) ) { return false; } return parent::check_capabilities(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |