Automattic\WooCommerce\Blueprint\Exporters
ExportInstallThemeSteps::check_step_capabilities
Check if the current user has the required capabilities for this step.
Метод класса: ExportInstallThemeSteps{}
Хуков нет.
Возвращает
true|false
. True if the user has the required capabilities. False otherwise.
Использование
$ExportInstallThemeSteps = new ExportInstallThemeSteps(); $ExportInstallThemeSteps->check_step_capabilities(): bool;
Код ExportInstallThemeSteps::check_step_capabilities() ExportInstallThemeSteps::check step capabilities WC 10.0.2
public function check_step_capabilities(): bool { return current_user_can( 'switch_themes' ); }