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 code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |