Search Documentation

WP Travel Developer Documentation

  1. Home
  2. Docs
  3. WP Travel Developer Documentation
  4. Action Hooks Associated With Tour Extras
  5. Action :wp_travel_trip_extras_fields

Action :wp_travel_trip_extras_fields

Hook to add trip extras fields.

Active Since v2.0.3

Source

File: /inc/admin-helper.php
Used by: /inc/admin-helper.php

Parameters
$post_id, $context, $fetch_key, $table_row

Example:

function prefix_wp_travel_trip_extras_fields( $post_id, $context, $fetch_key, $table_row ) {
    esc_html_e( ‘This is content added using this hook’, ‘text-domain’ );
}
add_action( 'wp_travel_trip_extras_fields', 'prefix_wp_travel_trip_extras_fields'  );
Was this article helpful to you? Yes No

How can we help?