Automattic\WooCommerce\Internal\ProductFeed
ProductFeed::deactivate
Plugin deactivation
Метод класса: ProductFeed{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ProductFeed = new ProductFeed(); $ProductFeed->deactivate(): void;
Список изменений
| С версии 10.5.0 | Введена. |
Код ProductFeed::deactivate() ProductFeed::deactivate WC 10.5.2
public function deactivate(): void {
foreach ( $this->integration_registry->get_integrations() as $integration ) {
$integration->deactivate();
}
}