usces_filter_option_adminmail / フィルターフック

管理メールの商品オプション情報の内容を変更

説明

管理パネル【Welcart Management>受注データ編集】から送信する管理メールの、商品オプション情報の内容を変更できます。

使い方

add_filter( 'usces_filter_option_adminmail',  'my_filter_option_adminmail', 10, 3 );
function my_filter_option_adminmail( $optstr, $options, $cart_row ) {
    //処理
    return $optstr;
}

パラメータ

$optstr
(文字列)商品オプション
$options
(配列)商品オプションデータ
$cart_row
(配列)カート行データ

用例

ソースファイル

usc-e-shop/functions/function.php

関連資料

  • usces_order_confirm_message()