do_action( 'learndash_essay_grading_response_updated', string $grading_response )
Fires after the grading response is updated.
Contents
Description #
Parameters #
- $grading_response
-
(string) Grading response message.
Source #
File: includes/admin/classes-posts-edits/class-learndash-admin-essay-edit.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_essay_grading_response_updated action.
*/
add_action(
'learndash_essay_grading_response_updated',
function( $grading_response ) {
// May add any custom logic using $grading_response
}
);