Automattic\WooCommerce\Internal\ProductFeed

ProductFeed::deactivatepublicWC 10.5.0

Plugin deactivation

Method of the class: ProductFeed{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ProductFeed = new ProductFeed();
$ProductFeed->deactivate(): void;

Changelog

Since 10.5.0 Introduced.

ProductFeed::deactivate() code WC 10.7.0

public function deactivate(): void {
	foreach ( $this->integration_registry->get_integrations() as $integration ) {
		$integration->deactivate();
	}
}