Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save wpweb101/91075f6220729d9b31be to your computer and use it in GitHub Desktop.

Select an option

Save wpweb101/91075f6220729d9b31be to your computer and use it in GitHub Desktop.
Follow My Blog Post - Server To Email issue
<?php
// Note : If you still do not get mail then please write any email id instead of '$fromemail'
// Please add the below code to your theme functions file.
function wpw_fp_set_email_to( $email, $fromemail ) {
$email = $fromemail; // any custom email id, if you do not getting any mail
return $email;
}
add_filter( 'wpw_fp_blank_email_to', 'wpw_fp_set_email_to', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment