Automattic\WooCommerce\Internal\PushNotifications\Notifications

StockNotification::delete_metapublicWC 1.0

{@inheritDoc}

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

Хуков нет.

Возвращает

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

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

$StockNotification = new StockNotification();
$StockNotification->delete_meta( $key ): void;
$key(строка) (обязательный)
The meta key.

Код StockNotification::delete_meta() WC 10.9.1

public function delete_meta( string $key ): void {
	$product = WC()->call_function( 'wc_get_product', $this->get_resource_id() );

	if ( $product instanceof WC_Product ) {
		$product->delete_meta_data( $key . '_' . $this->event_type );
		$product->save_meta_data();
	}
}