The contact-form-7 wpcf7 subscribers only notice hook.
Published Date - July 22, 2023
return apply_filters( 'wpcf7_subscribers_only_notice', $notice, $this );
$notice
$instance
The following example is for adding a hook callback.
// define the wpcf7_subscribers_only_notice callback
function custom_wpcf7_subscribers_only_notice( $notice, $instance ){
//custom code here
return $notice
}
//add the action
add_filter('wpcf7_subscribers_only_notice', 'custom_wpcf7_subscribers_only_notice', 10, 2)
The filter is defined in the following location(s).
contact-form-7/includes/contact-form.php
return apply_filters( 'wpcf7_subscribers_only_notice', $notice, $this );