woocommerce_process_product_file_download_paths
The WooCommerce woocommerce process product file download paths hook.
Description
do_action( 'woocommerce_process_product_file_download_paths', (unknown) $product_get_parent_id, (unknown) $product_get_id, (unknown) $downloads );
Parameters (3)
- 0. $product_get_parent_id (unknown)
- The product get parent id.
- 1. $product_get_id (unknown)
- The product get id.
- 2. $downloads (unknown)
- The downloads.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_process_product_file_download_paths', $product_get_parent_id, $product_get_id, $downloads );
- The following example is for adding a hook callback.
- // define the woocommerce_process_product_file_download_paths callback
- function action_woocommerce_process_product_file_download_paths( $product_get_parent_id, $product_get_id, $downloads ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_process_product_file_download_paths', 'action_woocommerce_process_product_file_download_paths', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_process_product_file_download_paths', 'action_woocommerce_process_product_file_download_paths', 10, 3 );
Defined (2)
The action is defined in the following location(s).
- /includes/data-stores/class-wc-product-data-store-cpt.php
- do_action( 'woocommerce_process_product_file_download_paths', $product->get_parent_id(), $product->get_id(), $downloads );
- do_action( 'woocommerce_process_product_file_download_paths', $product->get_id(), 0, $downloads );