usces_filter_internal_tax / フィルターフック

内税額を変更

説明

usces_internal_tax() で取得する内税額を変更します。

使い方

add_filter( 'usces_filter_internal_tax',  'my_filter_internal_tax', 10, 2 );
function my_filter_internal_tax( $tax, $materials ) {
    //処理
    return $tax;
}

パラメータ

$tax
(文字列)内税額
$materials
(配列)税額計算に必要な情報

  • total_items_price:(数値)商品合計金額
  • discount:(数値)値引き額
  • shipping_charge:(数値)送料
  • cod_fee:(数値)代引き手数料
  • use_point:(数値)使用ポイント
  • order_id:(数値)(オプション)受注番号

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料