Automattic\WooCommerce\Internal\PushNotifications\Notifications
NewOrderNotification::has_meta
{@inheritDoc}
Метод класса: NewOrderNotification{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$NewOrderNotification = new NewOrderNotification(); $NewOrderNotification->has_meta( $key ): bool;
- $key(строка) (обязательный)
- The meta key.
Код NewOrderNotification::has_meta() NewOrderNotification::has meta WC 11.0.1
public function has_meta( string $key ): bool {
$order = WC()->call_function( 'wc_get_order', $this->get_resource_id() );
return $order instanceof WC_Order && $order->meta_exists( $key );
}