woocommerce_get_path_define_tokens хук-фильтрWC 1.0

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

add_filter( 'woocommerce_get_path_define_tokens', 'wp_kama_woocommerce_get_path_define_tokens_filter' );

/**
 * Function for `woocommerce_get_path_define_tokens` filter-hook.
 * 
 * @param  $path_tokens 
 *
 * @return 
 */
function wp_kama_woocommerce_get_path_define_tokens_filter( $path_tokens ){

	// filter...
	return $path_tokens;
}
$path_tokens
-

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

wc_get_path_define_tokens()
woocommerce_get_path_define_tokens
woocommerce/includes/wc-core-functions.php 231
return apply_filters( 'woocommerce_get_path_define_tokens', $path_tokens );

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

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