-
-
Save searchwpgists/1e462fd0d9bee1423baa85983b0260ab to your computer and use it in GitHub Desktop.
Change recipeint email for email summaries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Change the recipient of SearchWP email summaries. | |
| add_filter( 'searchwp/email_summaries/email_to', function( $email ) { | |
| return 'recipient_email@domain.com'; // Replace with your desired email | |
| } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment