apply_filters( 'learndash_updated_essay_scoring', array $updated_scoring_data )
Filter updated scoring data
Description #
Parameters #
- $updated_scoring_data
-
(array) Essay scoring data
Source #
File: includes/admin/classes-posts-listings/class-learndash-admin-essays-listing.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_updated_essay_scoring filter.
*/
add_filter(
'learndash_updated_essay_scoring',
function( $updated_scoring ) {
// May add any custom logic using $updated_scoring.
// Always return $updated_scoring.
return $updated_scoring;
}
);
Changelog #
| Version | Description |
|---|---|
| 2.2.0 | Introduced. |