ファンクション
wcexics_get_group_item_price_modifier( int $alterby )
説明 説明
Examples:
- (+100円)
- (-100円)
- $alterby
(数値) (必須)
ファイル: src/template-functions.php
function wcexics_get_group_item_price_modifier($alterby) { $text = ''; if ((int)$alterby !== 0) { $text .= '('; $text .= $alterby > 0 ? '+' : '-'; $text .= $alterby < 0 ? $alterby * -1 : $alterby; $text .= __('dollars', 'usces'); $text .= ')'; } $text = apply_filters('wcexics_filter_group_item_price_modifier_display', $text, $alterby); return $text; }