Advertisement
q1LLa

Untitled

Aug 24th, 2024 (edited)
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. if (function_exists('wpcf7')) {
  2.   function cf7_extra_fields_func()
  3.   {
  4.     if (is_singular('excursions')) {
  5.       $price = get_post_meta(get_the_ID(), 'exc_price', true);
  6.       $html = '';
  7.       $html .= '<input class="wpcf7-form-control wpcf7-hidden" type="hidden" name="product-title" value="'.get_the_title().'" />';
  8.       $html .= '<input class="wpcf7-form-control wpcf7-hidden" type="hidden" name="exc-price" value="' . esc_attr($price)  . '" />';
  9.       return $html;
  10.     }
  11.   }
  12.   wpcf7_add_form_tag('cf7_extra_fields', 'cf7_extra_fields_func');
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement