Browse: Home / Hooks /

learndash_grading_response

apply_filters( 'learndash_grading_response',  string $grading_response )

Filters essay grading response message.


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_grading_response filter.
 */
add_filter(
	'learndash_grading_response',
	function( $grading_response ) {
		// May add any custom logic using $grading_response.

		// Always return $grading_response.
		return $grading_response;
	}
);