woocommerce_pre_delete_$this->object_type
woocommerce_pre_delete_$this->object_type
Appears in: woocommerce.8.1.1
Hook Type: filter
Displaying hooks found in version: woocommerce.8.1.1apply_filters('woocommerce_pre_delete_$this->object_type') is found 1 times:
- /includes/abstracts/abstract-wc-data.php line 207
* @param bool $force_delete Whether to bypass the trash. * * @since 8.1.0. */ $check = apply_filters( "woocommerce_pre_delete_$this->object_type", null, $this, $force_delete ); if ( null !== $check ) { return $check; } if ( $this->data_store ) { $this->data_store->delete( $this, array( 'force_delete' => $force_delete ) ); $this->set_id( 0 );