WP_Customize_Partial::check_capabilities() WordPress Method
The WP_Customize_Partial::check_capabilities() method is used to check if the current user has the required capabilities to edit a given partial. If the user does not have the required capabilities, the method will return false.
WP_Customize_Partial::check_capabilities() #
Checks if the user can refresh this partial.
Description
Returns false if the user cannot manipulate one of the associated settings, or if one of the associated settings does not exist.
Return
(bool) False if user can't edit one of the related settings, or if one of the associated settings does not exist.
Source
File: wp-includes/customize/class-wp-customize-partial.php
final public function check_capabilities() { if ( ! empty( $this->capability ) && ! current_user_can( $this->capability ) ) { return false; } foreach ( $this->settings as $setting_id ) { $setting = $this->component->manager->get_setting( $setting_id ); if ( ! $setting || ! $setting->check_capabilities() ) { return false; } } return true; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.5.0 | Introduced. |