wpcf7_save_contact_form
Использование
add_action( 'wpcf7_save_contact_form', 'wp_kama_wpcf7_save_contact_form_action', 10, 3 ); /** * Function for `wpcf7_save_contact_form` action-hook. * * @param $contact_form * @param $args * @param $context * * @return void */ function wp_kama_wpcf7_save_contact_form_action( $contact_form, $args, $context ){ // action... }
- $contact_form
- -
- $args
- -
- $context
- -
Где вызывается хук
wpcf7_save_contact_form
contact-form-7/includes/contact-form-functions.php 310
do_action( 'wpcf7_save_contact_form', $contact_form, $args, $context );