Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created December 19, 2022 15:11
Show Gist options
  • Save thierrypigot/7373b77e224843056659e8014c746816 to your computer and use it in GitHub Desktop.
Save thierrypigot/7373b77e224843056659e8014c746816 to your computer and use it in GitHub Desktop.
Code qui ajoute un message personnalisé à toutes les notifications
<?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