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