usces_fiter_the_payment_method_explanation / フィルターフック

支払方法の説明書きを変更する

説明

支払方法の下に表示される説明書きを変更できます。

使い方

add_filter( 'usces_fiter_the_payment_method_explanation', 'my_filter_the_payment_method_explanation', 10, 3 );
function my_filter_the_payment_method_explanation( $explanation, $payments, $value ) {
    //処理
    return $explanation;
}

パラメータ

$explanation
(文字列)基本設定>支払方法の説明。
$payments
(配列)支払方法情報。usces_get_system_option( ‘usces_payment_method’, ‘sort’ ) の戻り値。
$value
(文字列)あらかじめチェックを入れておきたい支払方法の名称。

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料