Description
Use this filter to modify whether a user that currently has a status of unsubscribed on your list is resubscribed. By default, the user is resubscribed.
Usage
1 | add_filter( "gform_mailchimp_allow_resubscription" , "__return_false" ); |
You can also specify this per form by adding the form id after the hook name.
1 | add_filter( "gform_mailchimp_allow_resubscription_1" , "__return_false" ); |
Parameters
There are no parameters.
Examples
This examples returns false so that users are not resubscribed:
1 2 3 | <?php add_filter( "gform_mailchimp_allow_resubscription" , "__return_false" ); ?> |
Placement
This code should be placed in the functions.php file of your active theme.
Source Code
This filter is located in mailchimp.php.