(hook_prefix)(key) filter-hook . WC 1.0
Usage
add_filter( '(hook_prefix)(key)', 'filter_function_name_9224', 10, 2 ); function filter_function_name_9224( $value, $that ){ // filter... return $value; }
- $value
- -
- $that
- -
Where the hook is called
(hook_prefix)(key)
woocommerce/includes/abstracts/abstract-wc-data.php 352
$value = apply_filters( $this->get_hook_prefix() . $key, $value, $this );