usces_filter_option_history / フィルターフック

usces_member_history() で表示する会員の購入履歴データのオプション値の表示を変更

説明

usces_member_history() で表示する会員の購入履歴データのオプション値の表示を変更できます。

使い方

add_filter( 'usces_filter_option_history',  'my_filter_option_history', 10, 2 );
function my_filter_option_history( $optstr, $options ) {
    //処理
    return $optstr;
}

パラメータ

$optstr
(文字列)会員の購入履歴の商品ごとのオプションの表示
$options
(配列)会員の購入履歴の商品ごとのオプション情報

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料

  • usces_member_history()
  • usces_filter_option_info_history ・・・ usces_member_history() で表示する会員の購入履歴データのオプション値の表示を変更できます。