WP_Customize_Section::check_capabilities() public WP 3.4.0
Checks required user capabilities and whether the theme has the feature support required by the section.
{} It's a method of the class: WP_Customize_Section{}
No Hooks.
Return
true/false. False if theme doesn't support the section or user doesn't have the capability.
Usage
$WP_Customize_Section = new WP_Customize_Section(); $WP_Customize_Section->check_capabilities();
Changelog
Since 3.4.0 | Introduced. |
Code of WP_Customize_Section::check_capabilities() WP Customize Section::check capabilities WP 5.6
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;
}