(tag) хук-фильтр . WC 1.0
Calls the callback functions that have been added to a filter hook.
Использование
add_filter( '(tag)', 'filter_function_name_8110', 10, 2 ); function filter_function_name_8110( $tag, $value ){ // filter... return $tag; }
- $tag(строка)
- The name of the filter hook.
- $value(разное)
- The value to filter.
Где вызывается хук
(tag)
(tag)
woocommerce/src/Proxies/ActionsProxy.php 36
return apply_filters( $tag, $value, ...$parameters );
woocommerce/includes/wc-deprecated-functions.php 35
do_action_ref_array( $tag, $args );