mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
12 lines
346 B
Text
12 lines
346 B
Text
add_filter( 'woocommerce_email_headers', 'filter_wc_remove_reply_to', 20, 3 );
|
|
function filter_wc_remove_reply_to( $header, $email_id, $order ) {
|
|
|
|
$headers=explode("\n", $header);
|
|
$newheaders=array();
|
|
foreach ($headers as $line) {
|
|
if (strncmp($line, "Reply-to", 8)!=0) {
|
|
$newheaders[]=$line;
|
|
}
|
|
}
|
|
return(implode("\n", $newheaders));
|
|
}
|