Filters the comment notification email headers.
$message_headers, $comment->comment_ID
Sortie :
@param string $message_headers Headers for the comment notification email. @param string $comment_id Comment ID as a numeric string.
// Modifier la valeur avec le filtre 'comment_notification_headers'
add_filter('comment_notification_headers', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($message_headers) {
// Modifier la valeur
return $message_headers;
}
Chargement des actualités...