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

説明

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

引数

このアクションには1つのパラメーターが渡されます。
$product_id
(整数)元の商品のID。

使用例

add_action( 'wcml_after_save_custom_prices', '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件) →