説明
商品詳細ページに表示するカスタムフィールド(wccs_*)の表示を変更できます。
使い方
add_filter( 'usces_filter_item_custom', 'my_filter_item_custom', 10, 3 ); function my_filter_item_custom( $html, $post_id, $type ) { //処理 return $html; }
パラメータ
- $html
- (HTML)カスタムフィールド
- $post_id
- (数値)商品の投稿ID
- $type
- (文字列)HTML タグ形式。初期値は ‘list’。
- ‘list’(初期値):
<ul><li>キー:値</li></ul>
- ‘table’:
<table><tr><th>キー</th><td>値</td></tr></table>
- ‘notag’:HTMLタグなし。
キー:値(改行コード)
- ‘list’(初期値):
用例
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_get_item_custom()