woocommerce_file_download_method
Filter download method.
Использование
add_filter( 'woocommerce_file_download_method', 'wp_kama_woocommerce_file_download_method_filter', 10, 3 ); /** * Function for `woocommerce_file_download_method` filter-hook. * * @param string $method Download method. * @param int $product_id Product ID. * @param string $file_path URL to file. * * @return string */ function wp_kama_woocommerce_file_download_method_filter( $method, $product_id, $file_path ){ // filter... return $method; }
- $method(строка)
- Download method.
- $product_id(int)
- Product ID.
- $file_path(строка)
- URL to file.
Список изменений
С версии 4.5.0 | Введена. |
Где вызывается хук
woocommerce_file_download_method
woocommerce/includes/class-wc-download-handler.php 251
$file_download_method = apply_filters( 'woocommerce_file_download_method', get_option( 'woocommerce_file_download_method', 'force' ), $product_id, $file_path );