更改电子邮件中默认的WordPress';From';字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改电子邮件中默认的WordPress';From';字段相关的知识,希望对你有一定的参考价值。

  1. if ( !class_exists('wp_mail_from') ) {
  2. class wp_mail_from {
  3. function wp_mail_from() {
  4. add_filter( 'wp_mail_from', array(&$this, 'fb_mail_from') );
  5. add_filter( 'wp_mail_from_name', array(&$this, 'fb_mail_from_name') );
  6. }
  7. // new name
  8. function fb_mail_from_name() {
  9. $name = 'Put the Name Here';
  10. // alternative the name of the blog
  11. // $name = get_option('blogname');
  12. $name = esc_attr($name);
  13. return $name;
  14. }
  15. // new email-adress
  16. function fb_mail_from() {
  17. $email = '[email protected]';
  18. $email = is_email($email);
  19. return $email;
  20. }
  21. }
  22. $wp_mail_from = new wp_mail_from();
  23. }

以上是关于更改电子邮件中默认的WordPress';From';字段的主要内容,如果未能解决你的问题,请参考以下文章

更改 WordPress 默认激活电子邮件的主题和内容

text 更改默认的wordpress @电子邮件地址

更改Wordpress中特色图像框的位置

php 更改WordPress的默认外发电子邮件

PHP 更改WordPress默认的FROM电子邮件地址

从电子邮件地址更改WordPress默认值