woocommerce_rest_save_product_variation

woocommerce_rest_save_product_variation

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

do_action('woocommerce_rest_save_product_variation') is found 2 times:

  • /includes/legacy/api/class-wc-rest-legacy-products-controller.php line 695
    			}
    
    			$variation->save();
    
    			do_action( 'woocommerce_rest_save_product_variation', $variation->get_id(), $menu_order, $data );
    		}
    
    		return true;
    	}
    
    	/**
    
  • /includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php line 1537
    			}
    
    			$variation->save();
    
    			do_action( 'woocommerce_rest_save_product_variation', $variation->get_id(), $menu_order, $data );
    		}
    
    		return true;
    	}
    
    	/**