説明
usces_the_itemOption() が出力する、商品オプションの入力フィールドを書き換えます。
使い方
add_filter( 'usces_filter_the_itemOption', 'my_filter_the_itemOption', 10, 6 ); function my_filter_the_itemOption( $html, $opts, $name, $label, $post_id, $sku ) { //処理 return $html; }
パラメータ
- $html
- (HTML)商品オプション input フィールド
- $opts
- (object)商品オプション情報。usces_get_opts() の戻り値。
- $name
- (文字列)商品オプション名。
- $label
- (文字列)商品オプション表示名。
- $post_id
- (数値)商品の投稿ID。
- $sku
- (文字列)商品のSKUコード。
用例
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_the_itemOption() ・・・ 商品オプションのフィールドタイプを判断し、セレクト値を表示する
- usces_get_opts()