更改电子邮件中默认的WordPress';From';字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改电子邮件中默认的WordPress';From';字段相关的知识,希望对你有一定的参考价值。
class wp_mail_from { function wp_mail_from() { } // new name function fb_mail_from_name() { $name = 'Put the Name Here'; // alternative the name of the blog // $name = get_option('blogname'); $name = esc_attr($name); return $name; } // new email-adress function fb_mail_from() { $email = is_email($email); return $email; } } $wp_mail_from = new wp_mail_from(); }
以上是关于更改电子邮件中默认的WordPress';From';字段的主要内容,如果未能解决你的问题,请参考以下文章