Automattic\WooCommerce\Internal\PushNotifications\Notifications
NewReviewNotification::delete_meta
{@inheritDoc}
Method of the class: NewReviewNotification{}
No Hooks.
Returns
null. Nothing (null).
Usage
$NewReviewNotification = new NewReviewNotification(); $NewReviewNotification->delete_meta( $key ): void;
- $key(string) (required)
- The meta key.
NewReviewNotification::delete_meta() NewReviewNotification::delete meta code WC 10.9.1
public function delete_meta( string $key ): void {
WC()->call_function( 'delete_comment_meta', $this->get_resource_id(), $key );
}