Automattic\WooCommerce\Internal\ProductFeed

ProductFeed::registerpublicWC 10.5.0

Initialize plugin components

Метод класса: ProductFeed{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

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

Список изменений

С версии 10.5.0 Введена.

Код ProductFeed::register() WC 10.5.2

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