説明
ベストセラーウィジェットに表示される商品のタイトルを、リストタグ(
)ごと書き換えます。
使い方
add_filter( 'usces_filter_bestseller', 'my_filter_bestseller', 10, 3 ); function my_filter_bestseller( $list, $post_id, $index ) { //処理 return $list; }
パラメータ
- $list
- (文字列)商品のタイトルを、リストタグ・アンカータグ(
- ~
)で囲んだHTML文字列
- $post_id
- (数値)商品の投稿ID
- $index
- (数値)ベストセラーの並び順
用例
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_list_bestseller()
- usces_widget_bestseller_auto_text ・・・ ベストセラーウィジェットに表示される商品のタイトルを書き換える