Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

How get post id?

$
0
0

Replies: 0

I have function like this, but I dont now how I can get post id… Can you help me?
Contact form I have in modal popup.

function cf7dynamicnotifications($contact_form)
{
	$submission = WPCF7_Submission::get_instance(); 

	$post_id = $submission->get_meta('container_post_id');

	$newmail = get_field('email', $post_id);

   	$mailProp = $contact_form->get_properties('mail');
   	$mailProp['mail']['recipient'] = $newmail;

   	$contact_form->set_properties(array('mail' => $mailProp['mail']));

}

add_action( 'wpcf7_before_send_mail', 'cf7dynamicnotifications');
  • This topic was modified 46 minutes ago by mariuszm.

Viewing all articles
Browse latest Browse all 59525

Trending Articles