WP_Customize_Panel::check_capabilities
Checks required user capabilities and whether the theme has the feature support required by the panel.
Метод класса: WP_Customize_Panel{}
Хуков нет.
Возвращает
true|false. False if theme doesn't support the panel or the user doesn't have the capability.
Использование
$WP_Customize_Panel = new WP_Customize_Panel(); $WP_Customize_Panel->check_capabilities();
Список изменений
| С версии 4.0.0 | Введена. |
| С версии 5.9.0 | Method was marked non-final. |
Код WP_Customize_Panel::check_capabilities() WP Customize Panel::check capabilities WP 7.0
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;
}