WP_Customize_Panel::check_capabilities()

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


Description Description


Return Return

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


Top ↑

Source Source

File: wp-includes/class-wp-customize-panel.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

Changelog
Version Description
4.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.