WPML
add_action( 'wcml_after_custom_prices_block', 'the_callback_function', 10, 1 );
タイプ
action
カテゴリー
多通貨機能
WooCommerce Multilingualバージョン
3.8.1

説明

  • WooCommerceのネイティブ商品エディターでカスタム価格ブロックを生成した後に、アクションを実行します。
  • このアクションは、元の商品を作成または編集する場合にのみトリガーされます。

引数

このアクションには以下の1つのパラメーターが渡されます。
$product_id
(整数 | 文字列)編集中の商品のID、または商品が作成中の場合は文字列値new

使用例

add_action( 'wcml_after_custom_prices_block', 'my_custom_action', 10, 1 );

function my_custom_action( $product_id ) {

	// my custom action

}

wcml_custom_prices_fields_labels, wcml_is_cache_enabled_for_switching_currency, wcml_geolocation_get_user_country, wcml_user_store_strategy, wcml_rounded_price, wcml_currencies_without_cents, wcml_product_custom_prices, wcml_custom_prices_strings, wcml_switch_currency, wcml_custom_prices_fields

すべての多通貨機能フック(24件) →