wpcf7_copy
Использование
add_filter( 'wpcf7_copy', 'wp_kama_wpcf7_copy_filter', 10, 2 );
/**
* Function for `wpcf7_copy` filter-hook.
*
* @param $new
* @param $that
*
* @return
*/
function wp_kama_wpcf7_copy_filter( $new, $that ){
// filter...
return $new;
}
- $new
- -
- $that
- -
Где вызывается хук
wpcf7_copy
contact-form-7/includes/contact-form.php 1322
return apply_filters( 'wpcf7_copy', $new, $this );