WP_Customize_Panel::check_capabilities() – Checks required user capabilities and whether the theme has the feature support required by the panel.

You appear to be a bot. Output may be restricted

Description

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

Usage

$bool = WP_Customize_Panel::check_capabilities();

Parameters

Returns

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

Source

File name: wordpress/wp-includes/class-wp-customize-panel.php
Lines:

1 to 11 of 11
  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;
  }
 

 View on GitHub View on Trac