Created
December 19, 2022 15:11
-
-
Save thierrypigot/7373b77e224843056659e8014c746816 to your computer and use it in GitHub Desktop.
Code qui ajoute un message personnalisé à toutes les notifications
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_notification_message( $message ) { | |
$message .= 'Ceci est mon message personnalisé.'; | |
return $message; | |
} | |
add_action( 'wp_mail', 'my_notification_message' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment