-
-
Save DavidPeralvarez/005501f2e40fe3da0e153ee62787991c to your computer and use it in GitHub Desktop.
Lesson Reply Notification 5
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 | |
/* | |
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 ) { | |
if (($comment->comment_approved == 1) && ($comment->comment_parent > 0)) { | |
$parent = get_comment($comment->comment_parent); | |
$email = $parent->comment_author_email; | |
// Check comments are from lessons | |
$postId = $parent->comment_post_ID; | |
$postType = get_post_type($postId); | |
if($postType == 'lesson'){ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment