0) { $message_e = implode('
',$err); } else { $message_e = 1; $contact_name = sanitize_text_field($_POST['contact_name']); $contact_email = sanitize_email($_POST['contact_email']); $emheaders[] = 'From: '.$contact_name.' <'.$contact_email.'>'; $emheaders[] = 'Reply-To: '.$contact_name.' <'.$contact_email.'>'; wp_mail(get_post_meta($post->ID,'_npr_contact_form_email',true), sprintf('[%s]'.sanitize_text_field($_POST['contact_subject']),get_option('blogname')), wp_strip_all_tags($_POST['contact_message']),$emheaders); } if(isset($_POST['ajax'])) { print $message_e; } else { header("location:".get_permalink(get_the_ID())); } } else { $fullwidth = (get_post_meta($post->ID,'_npr_contact_fullwidth',true) == 'true') ? true : false; $formid = 'npr_contact_form_'.dechex(mt_rand(0,65536)); if(get_post_meta($post->ID,'_npr_contact_showmaps',true) == 'true') { $mapsbox = '
'; } if(get_post_meta($post->ID,'_npr_contact_showinfo',true) == 'true') { $sple = explode('@',get_post_meta($post->ID,'_npr_contact_email',true)); $infobox = '
'.(get_post_meta($post->ID,'_npr_contact_name',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_name',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_address_1',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_address_1',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_address_2',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_address_2',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_city',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_city',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_state',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_state',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_country',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_country',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_zip',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_zip',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_phone',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_phone',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_fax',true) != '' ? '

'.get_post_meta($post->ID,'_npr_contact_fax',true).'

' : '').' '.(get_post_meta($post->ID,'_npr_contact_email',true) != '' ? '

' : '').'
'; } if($mapsbox != '') $addclass .= '_box_maps'; if($infobox != '') $addclass .= '_box_info'; if($addclass != '') { $extra_content .= '
'.$infobox.' '.$mapsbox.'
'; } $cpn1 = mt_rand(1,10); $cpn2 = mt_rand(1,10); $cpd = mt_rand(1,30); $rcpf = $cpn1 + $cpn2; $cps = 'capt_'.$formid; $_SESSION[$cps] = $rcpf; $extra_content .= '

'.wp_nonce_field('cform_submit','_wpnonce_cf_submitted',false,false).'

'.($message_e != '' ? '
'.$message_e.'
' : '').'
'; include('page.php'); } ?>