This hook allows you to add your custom content aside the trip price detail section.
Source
File : /inc/template-functions.php
Used by |
/inc/template-functions.php |
Example :
function prefix_wp_travel_single_trip_after_price() { esc_html_e( 'This is the content added using this hook', 'text-domain' ); } add_action( 'wp_travel_single_trip_after_price', 'prefix_wp_travel_single_trip_after_price' );