Advertisement
miriamdepaula

WordPress: Change email sender and from name

Jul 28th, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. add_filter('wp_mail_from', 'new_mail_from');
  3. add_filter('wp_mail_from_name', 'new_mail_from_name');
  4.  
  5. function new_mail_from($old) {
  6.      return 'admin@seuwordpress.com.br';
  7. }
  8.  
  9. function new_mail_from_name($old) {
  10. return 'Nome do seu site';
  11. }
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement