如何从通过联系表格发送邮件中删除“wordpress”字样7
答
请尝试使用以下代码。代码将去的functions.php
// Function to change email address
function wpb_sender_email($original_email_address) {
return '[email protected]';
}
// Function to change sender name
function wpb_sender_name($original_email_from) {
return 'Tim Smith';
}
// Hooking up our functions to WordPress filters
add_filter('wp_mail_from', 'wpb_sender_email');
add_filter('wp_mail_from_name', 'wpb_sender_name');
+0
你能为我提供该文件的正确路径,请 –
+0
@ManvendraRajpuro点击'wp-content/themes/[your-theme]/functions.php' – naththedeveloper
+0
是@naththedeveloper你是对的 –
它的工作,无需编码..谢谢.. –
没问题兄弟可以upvote it:P – sagar