woocommerce_pre_delete_$this->object_type, null, $this, $force_delete
woocommerce_pre_delete_$this->object_type, null, $this, $force_delete
Appears in: woocommerce.11.0.0
Hook Type: filter
Displaying hooks found in version: woocommerce.11.0.0apply_filters('woocommerce_pre_delete_$this->object_type, null, $this, $force_delete') is found 1 times:
- /includes/abstracts/abstract-wc-data.php line 266
* @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 );