usces_filter_the_payment_method_choices / フィルターフック

usces_the_payment_method() で出力される、支払方法選択ブロックを変更する

説明

usces_the_payment_method() で出力される、支払方法の説明も含めた支払方法選択ブロック(ラジオボタン形式)を変更できます。

使い方

add_filter( 'usces_filter_the_payment_method_choices', 'my_filter_the_payment_method_choices', 10, 2 );
function my_filter_the_payment_method_explanation( $html, $payments ) {
    //処理
    return $html;
}

パラメータ

$html
(HTML)支払方法の説明も含めた支払方法選択ブロック(ラジオボタン形式)。
$payments
(配列)支払方法情報。usces_get_system_option( ‘usces_payment_method’, ‘sort’ ) の戻り値。

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料