WP_Customize_Section::check_capabilities() WordPress Method

The WP_Customize_Section::check_capabilities() method is used to check if the current user has the required capabilities to edit a given section. This is typically called by the WP_Customize_Manager::check_capabilities() method before rendering any section-related controls in the Customizer.

WP_Customize_Section::check_capabilities() #

Checks required user capabilities and whether the theme has the feature support required by the section.


Return

(bool) False if theme doesn't support the section or user doesn't have the capability.


Top ↑

Source

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;
	}


Top ↑

Changelog

Changelog
VersionDescription
3.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.