説明
商品名称を書き換えます。
使い方
add_filter( 'usces_filter_cart_item_name', 'my_filter_cart_item_name', 10, 2 ); function my_filter_cart_item_name( $cart_item_name, $args ) { //処理 return $cart_item_name; }
パラメータ
- $cart_item_name
- (文字列)esc_html でエスケープ処理した $usces->getCartItemName_byOrder() の戻り値
- $args
- (配列)
- cart:(配列)カート情報
- i:(数値)会員の購入履歴のカート内の商品インデックス
- cart_row:(配列)カート行
- post_id:(数値)商品の投稿ID
- sku:(文字列)商品のSKUコード
注意
esc_html 等でエスケープ処理済の値を返却してください。
用例
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_member_history()
- usces_get_cart_rows() ・・・ カートに入っている商品を取得し、カート画面用の行を表示する。
- usces_get_confirm_rows() ・・・ カートに入っている商品を取得し、カート内容確認画面用の行を表示する。