Skip to main content
Array
(
    [0] => Array
        (
            [0] => Array
                (
                    [label] => Home
                    [link] => https://sftlatestbackup.staging33.com
                    [title] => Home
                    [type] => blog_home
                )

            [1] => Array
                (
                    [label] => Knowledge Base
                    [link] => https://sftlatestbackup.staging33.com/knowledge-base/
                    [title] => Knowledge Base
                    [type] => kb_home
                )

            [2] => Array
                (
                    [label] => Assignment Deadlines Pro for Learndash
                    [link] => https://sftlatestbackup.staging33.com/article-categories/asdld/
                    [title] => View all posts in Assignment Deadlines Pro for Learndash
                    [type] => kb_tax
                )

            [3] => Array
                (
                    [label] => ASDLD Developer Documentation
                    [link] => https://sftlatestbackup.staging33.com/article-categories/asdld-developer-documentation/
                    [title] => View all posts in ASDLD Developer Documentation
                    [type] => kb_tax
                )

        )

)
  1. Home
  2. Knowledge Base
  3. Assignment Deadlines Pro for Learndash
  4. ASDLD Developer Documentation

ASDLD Developer Documentation

Customize Reply Email Template The Assignment Deadlines Pro for LearnDash plugin provides the asdld_modify_comment_reply_email_content filter hook, which allows developers to customize the email content sent when replying to comments made on assignments. This filter is triggered just before the reply email is sent to the student, enabling you to dynamically modify or enhance the email body. Usage Example add_filter('asdld_modify_comment_reply_email_content', 'customize_comment_reply_email', 10, 2); function customize_comment_reply_email($message, $comment) { // Modify the email body $message .= "\n\nThank you for your feedback, " . $comment->comment_author . "!"; return $message; } Parameters message (string) The current body of the reply email that will be sent in response to a comment on an assignment. comment (WP_Comment object) The comment object associated with the assignment comment. This includes details such as the commenter's name, email, and the comment content.

Knowledge Base Categories

Need Support?

Can't find the answer you're looking for?
Contact Support