Search Documentation

WP Travel Developer Documentation

  1. Home
  2. Docs
  3. WP Travel Developer Documentation
  4. Filters Associated With Checkout Page
  5. Filter : wp_travel_checkout_traveller_fields

Filter : wp_travel_checkout_traveller_fields

WP Travel checkout travellers fields.

Source

File:/inc/form-fields.php
Used by: /inc/form-fields.php

Parameters
$traveller_fields

Example:

function prefix_wp_travel_checkout_traveller_fields( $traveller_fields ) {
    $traveller_fields[ ‘custom field’ ] = ‘value’;
    return $traveller_fields;
}
add_filter( 'wp_travel_checkout_traveller_fields', 'prefix_wp_travel_checkout_traveller_fields' );
Was this article helpful to you? Yes No

How can we help?