Uses
Uses | Description |
---|---|
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/theme.php: current_theme_supports() | Checks a theme’s support for a given feature. |
Checks required user capabilities and whether the theme has the feature support required by the section.
(bool) False if theme doesn't support the section or user doesn't have the capability.
File: wp-includes/class-wp-customize-section.php
final 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; }
Version | Description |
---|---|
3.4.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_section/check_capabilities