0
商品を更新した後で、商品の出荷クラスを編集するにはどうすればよいですか?商品のアップデートに関する商品出荷クラスを変更する - ウェブコマース
ここまで私はfunctions.phpを持っています。これはproduct_catという用語で動作しましたが、product_shipping_classでは機能しません。
add_action('save_post_product', 'my_product_save', 10, 3);
function my_product_save($post_id, $post, $update) {
$shipping_class_slug = 'international-standard-shipping';
wp_set_object_terms($post_id, $shipping_class_slug, 'product_shipping_class');
}
ありがとうございます!
パーフェクト!それは欲しいものとして働いています。どうもありがとう。 –
あなたは大歓迎です。 –