Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

display product page title in field cf7

wpcf7_add_shortcode( 'cf7_extra_fields', 'cf7_extra_fields_func', true );
function cf7_extra_fields_func( $atts ) {
   $html = '';
   $html .= '<input type="hidden" name="page-title" value="'.get_the_title().'" />';
   $html .= '<input type="hidden" name="page-url" value="'.get_the_permalink().'" />';
   return $html;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #display #product #page #title #field
ADD COMMENT
Topic
Name
1+5 =