(hook_prefix)(prop)
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
(hook_prefix)(prop)
(hook_prefix)(prop)
(hook_prefix)(prop)
woocommerce/includes/abstracts/abstract-wc-data.php 883
$value = apply_filters( $this->get_hook_prefix() . $prop, $value, $this );
woocommerce/includes/class-wc-customer.php 558
$value = apply_filters( $this->get_hook_prefix() . $prop, $value, $this );
woocommerce/includes/class-wc-customer.php 701
$value = apply_filters( $this->get_hook_prefix() . $prop, $value, $this );