説明
usces_custom_field_input() で表示されるカスタムフィールド(入力フィールド)を書き換えます。
使い方
add_filter( 'usces_filter_custom_field_input', 'my_filter_custom_field_input', 10, 4 ); function my_filter_custom_field_input( $html, $data, $custom_field, $position ) { //処理 return $html; }
パラメータ
- $html
- (HTML)テーブルタグで出力したカスタムフィールド(入力フィールド)のHTML文字列。
- $data
- (配列)カスタムフィールド情報
- $custom_field
- (文字列)カスタムフィールドタイプ
- ‘order’:カスタム・オーダーフィールド
- ‘customer’:カスタム・カスタマーフィールド
- ‘delivery’:カスタム・デリバリーフィールド
- ‘member’:カスタム・メンバーフィールド
- $position
- (文字列)カスタムフィールド表示位置
- ‘name_pre’:「名前」の前
- ‘name_after’:「名前」の後
- ‘fax_after’:「FAX」の後
用例
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_custom_field_input()
- usces_has_custom_field_meta()
- usces_filter_custom_field_input_label ・・・ usces_custom_field_input() で表示するカスタムフィールドのラベルに文字列やタグを追加
- usces_filter_custom_field_input_td ・・・ usces_custom_field_input() で表示するカスタムフィールドの td タグを書き換える
- usces_filter_custom_field_input_value ・・・ usces_custom_field_input() で表示するカスタムフィールドに文字列やタグを追加