usces_filter_the_delivery_method / フィルターフック

usces_the_delivery_method() が出力する配送方法のセレクトフィールドを書き換える

説明

usces_the_delivery_method() が出力する、配送方法のセレクトフィールドを書き換えます。

使い方

add_filter( 'usces_filter_the_delivery_method', 'my_filter_the_delivery_method', 10, 2 );
function my_filter_the_delivery_method( $html, $deli_id ) {
    //処理
    return $html;
}

パラメータ

$html
(HTML)商品オプション input フィールド
$deli_id
(配列)配送方法情報。$usces->get_available_delivery_method() の戻り値。

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料