woocommerce_product_file
Использование
add_filter( 'woocommerce_product_file', 'wp_kama_woocommerce_product_file_filter', 10, 3 );
/**
* Function for `woocommerce_product_file` filter-hook.
*
* @param $file
* @param $that
* @param $download_id
*
* @return
*/
function wp_kama_woocommerce_product_file_filter( $file, $that, $download_id ){
// filter...
return $file;
}
- $file
- -
- $that
- -
- $download_id
- -
Где вызывается хук
woocommerce_product_file
woocommerce/includes/abstracts/abstract-wc-product.php 2239
return apply_filters( 'woocommerce_product_file', $file, $this, $download_id );
Где используется хук в WooCommerce
woocommerce/src/Internal/Admin/EmailPreview/EmailPreview.php 633
add_filter( 'woocommerce_product_file', array( $this, 'provide_dummy_product_file' ), 10, 1 );
woocommerce/src/Internal/Admin/EmailPreview/EmailPreview.php 647
remove_filter( 'woocommerce_product_file', array( $this, 'provide_dummy_product_file' ), 10 );