apply_filters( 'ld_getHistoryTable', string $history_content )
Filters the quiz statistics history table HTML output.
Description #
Parameters #
- $history_content
-
(string) The History table HTML output.
Source #
File: includes/lib/wp-pro-quiz/lib/view/WpProQuiz_View_StatisticsAjax.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for ld_getHistoryTable filter.
*/
add_filter(
'ld_getHistoryTable',
function( $history_content ) {
// May add any custom logic using $history_content.
// Always return $history_content.
return $history_content;
}
);
Changelog #
| Version | Description |
|---|---|
| 2.4.2 | Introduced. |