(tag) хук-фильтрWC 1.0

Calls the callback functions that have been added to a filter hook.

Использование

add_filter( '(tag)', 'wp_kama_tag_filter', 10, 2 );

/**
 * Function for `(tag)` filter-hook.
 * 
 * @param string $tag   The name of the filter hook.
 * @param mixed  $value The value to filter.
 *
 * @return string
 */
function wp_kama_tag_filter( $tag, $value ){

	// filter...
	return $tag;
}
$tag(строка)
The name of the filter hook.
$value(разное)
The value to filter.

Где вызывается хук

ActionsProxy::apply_filters()
(tag)
wc_do_deprecated_action()
(tag)
woocommerce/src/Proxies/ActionsProxy.php 36
return apply_filters( $tag, $value, ...$parameters );
woocommerce/includes/wc-deprecated-functions.php 37
do_action_ref_array( $tag, $args );

Где используется хук в WooCommerce

Использование не найдено.