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