On this page
WP_Customize_Setting::check_capabilities(): bool
Validate user capabilities whether the theme supports the setting.
Return
bool False if theme doesn't support the setting or user can't change setting, otherwise true.
Source
File: wp-includes/class-wp-customize-setting.php. View all references
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;
}
Related
Uses
| Uses | Description |
|---|---|
| current_user_can() wp-includes/capabilities.php | Returns whether the current user has the specified capability. |
| current_theme_supports() wp-includes/theme.php | Checks a theme’s support for a given feature. |
Used By
| Used By | Description |
|---|---|
| WP_Customize_Setting::save() wp-includes/class-wp-customize-setting.php | Checks user capabilities and theme supports, and then saves the value of the setting. |
Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_setting/check_capabilities