Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Last active December 21, 2017 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shelob9/14bdfa65cc2e199b7f896f1057d69912 to your computer and use it in GitHub Desktop.
Save Shelob9/14bdfa65cc2e199b7f896f1057d69912 to your computer and use it in GitHub Desktop.
<?php
/**
* Change Caldera Forms default fallback email
*/
add_filter( 'caldera_forms_fallback_email', function( $email, $form ) {
$email = 'hi@roy.com';
return $email;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment