wpcf7_autop_or_not
Использование
add_filter( 'wpcf7_autop_or_not', 'wp_kama_wpcf7_autop_or_not_filter', 10, 2 );
/**
* Function for `wpcf7_autop_or_not` filter-hook.
*
* @param $WPCF7_AUTOP
* @param $options
*
* @return
*/
function wp_kama_wpcf7_autop_or_not_filter( $WPCF7_AUTOP, $options ){
// filter...
return $WPCF7_AUTOP;
}
- $WPCF7_AUTOP
- -
- $options
- -
Где вызывается хук
wpcf7_autop_or_not
contact-form-7/includes/functions.php 219
return (bool) apply_filters( 'wpcf7_autop_or_not', WPCF7_AUTOP, $options );