Fires after updating minimum trip price and before saving trip data.
Active Since: v4.0.4
Source
File: /core/helpers/trips.php
Used by: /core/helpers/trips.php
Parameters
$trip_data, $trip_id
Example:
function prefix_wp_travel_update_trip_data( $trip_data, $trip_id ) { error_log(‘I am called here before saving trip data’); } add_action( 'wp_travel_update_trip_data', 'prefix_wp_travel_update_trip_data' );