Automattic\WooCommerce\Internal\ProductFeed

ProductFeed::registerpublicWC 10.5.0

Initialize plugin components

Method of the class: ProductFeed{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

Changelog

Since 10.5.0 Introduced.

ProductFeed::register() code WC 10.7.0

public function register(): void {
	// Let all integrations register their hooks.
	foreach ( $this->integration_registry->get_integrations() as $integration ) {
		$integration->register_hooks();
	}
}