WC_Product::maybe_defer_product_sync()
If this is a child product, queue its parent for syncing at the end of the request.
{} Это метод класса: WC_Product{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->maybe_defer_product_sync();
Код WC_Product::maybe_defer_product_sync() WC Product::maybe defer product sync WC 6.5.1
protected function maybe_defer_product_sync() { $parent_id = $this->get_parent_id(); if ( $parent_id ) { wc_deferred_product_sync( $parent_id ); } }