How to add your php handler for contact form 7?
1 answer
The plugin has a wpcf7_before_send_mail hook, you can use it.
function action_wpcf7_before_send_mail( $contact_form ) { // обработка здесь... }; add_action( 'wpcf7_before_send_mail', 'action_wpcf7_before_send_mail' ); - created this topic based on this.stackoverflow.com/questions/722788/… Does it make it difficult to give a hint in the topic at the link provided? - word
- I saw this question, but I can not say anything - KAGG Design
|