Skip to content

Instantly share code, notes, and snippets.

@ipokkel
Created May 21, 2024 15:00
Show Gist options
  • Save ipokkel/dccf058723402cf588693189539eb617 to your computer and use it in GitHub Desktop.
Save ipokkel/dccf058723402cf588693189539eb617 to your computer and use it in GitHub Desktop.
<?php
/**
* Set the site email address for PMPro emails.
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_email_data_siteemail( $data, $email ) {
// Set the site email address here:
$data['siteemail'] = 'someone@example.com';
return $data;
}
add_filter( 'pmpro_email_data', 'my_pmpro_email_data_siteemail', 50, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment