<?php
/*
* Plugin Name: Just Use the Blog Name
* Description: Ensures that the FromName is the BlogName
* Plugin URI:
* Version: 0.1
* Author: Bottomofthestack
* Author URI:
* License: MIT
*/
function just_use_the_blog_name(){
return get_option(\'blogname\');
}
add_filter( \'wp_mail_from_name\', \'just_use_the_blog_name\' );
仍然存在一个问题,即replyto可能应该是发件人的电子邮件,而不是我的博客名,但这可能是recaptcha插件作者的一个问题?
注意,这在mu插件中不起作用,这会很方便
谢谢