Automattic\WooCommerce\Internal\StockNotifications

Notification::get_product_idpublicWC 1.0

Get the product ID.

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

Хуков нет.

Возвращает

int.

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

$Notification = new Notification();
$Notification->get_product_id( $context );
$context(строка)
Context.
По умолчанию: 'view'

Код Notification::get_product_id() WC 10.5.2

public function get_product_id( $context = 'view' ) {
	return $this->get_prop( 'product_id', $context );
}