Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Last active July 4, 2018 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/d3fb5035d4fc84f93b7e97164253ea1b to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/d3fb5035d4fc84f93b7e97164253ea1b to your computer and use it in GitHub Desktop.
Lesson Reply Notification 2
<?php
/*
Plugin Name: Lesson Reply Notification
Description: Send and email to the student, when he receives a response
Author: David Perálvarez
Version: 1.0
Author URI: https://silicodevalley.com
*/
add_action( 'wp_insert_comment', 'scv_comment_notification', 99, 2 );
function scv_comment_notification( $commentId, $comment ) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment