usces_filter_the_first_price / フィルターフック

usces_the_firstPrice() で出力される金額を変更する

説明

usces_the_firstPrice() で出力される金額を変更します。

使い方

add_filter( 'usces_filter_the_first_price',  'my_filter_the_first_price', 10, 4 );
function my_filter_the_first_price( $price, $post_id, $skus, $out ) {
    //処理
    return $price;
}

パラメータ

$price
(文字列)先頭のSKUの売価
$post_id
(数値)商品の投稿ID
$skus
(配列)商品の全SKU情報
$out
(文字列)戻り値の出力を echo するか return するかを決める。

  • ‘return’:return
  • ”(空文字)もしくは未設定:echo

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料