woocommerce_germanized_taxonomy_objects_product_delivery_time
The WooCommerce Germanized woocommerce germanized taxonomy objects product delivery time hook.
Description
Parameters (1)
- 0. $array (array) =>
array( 'product' )
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'woocommerce_germanized_taxonomy_objects_product_delivery_time', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the woocommerce_germanized_taxonomy_objects_product_delivery_time callback
- function filter_woocommerce_germanized_taxonomy_objects_product_delivery_time( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'woocommerce_germanized_taxonomy_objects_product_delivery_time', 'filter_woocommerce_germanized_taxonomy_objects_product_delivery_time', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'woocommerce_germanized_taxonomy_objects_product_delivery_time', 'filter_woocommerce_germanized_taxonomy_objects_product_delivery_time', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/class-wc-gzd-post-types.php
- apply_filters( 'woocommerce_germanized_taxonomy_objects_product_delivery_time', array( 'product' ) ),