Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This hook allows directory emails to be sent from an alternative email instead of the admin email.
Usage
add_filter( 'wpbdp_email_from', 'change_admin_email' );
Parameters
- $email (string)
Examples
Change sending from email
This example will change the email address that directory emails are sent from.
add_filter( 'wpbdp_email_from', 'change_admin_email' ); function change_admin_email_bloginfo( $email) { return '[email protected]'; }
Change Log
Added in version 5.13