mc4wp_email_type
Filters the email type preference for this new subscriber.
Description
Parameters (1)
- 0. $email_type (string)
- The email type.
Usage
- To run the hook, copy the example below.
- $email_type = apply_filters( 'mc4wp_email_type', $email_type );
- if ( !empty( $email_type ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the mc4wp_email_type callback
- function filter_mc4wp_email_type( $email_type ) {
- // make filter magic happen here...
- return $email_type;
- };
- // add the filter
- add_filter( 'mc4wp_email_type', 'filter_mc4wp_email_type', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'mc4wp_email_type', 'filter_mc4wp_email_type', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/functions.php
- $email_type = (string)apply_filters('mc4wp_email_type', $email_type);