(hook_prefix)(prop) filter-hookWC 1.0

Usage

add_filter( '(hook_prefix)(prop)', 'wp_kama_hook_prefixprop_filter', 10, 2 );

/**
 * Function for `(hook_prefix)(prop)` filter-hook.
 * 
 * @param  $value 
 * @param  $that  
 *
 * @return 
 */
function wp_kama_hook_prefixprop_filter( $value, $that ){

	// filter...
	return $value;
}
$value
-
$that
-

Where the hook is called

WC_Data::get_prop()
(hook_prefix)(prop)
WC_Customer::get_billing()
(hook_prefix)(prop)
WC_Customer::get_shipping()
(hook_prefix)(prop)
woocommerce/includes/abstracts/abstract-wc-data.php 884
$value = apply_filters( $this->get_hook_prefix() . $prop, $value, $this );
woocommerce/includes/class-wc-customer.php 499
$value = apply_filters( $this->get_hook_prefix() . $prop, $value, $this );
woocommerce/includes/class-wc-customer.php 642
$value = apply_filters( $this->get_hook_prefix() . $prop, $value, $this );

Where the hook is used in WooCommerce

Usage not found.