apply_filters( 'ldadvquiz_the_content', string $quiz_description )
Filters the description of the quiz.
Description #
Parameters #
- $quiz_description
-
(string) The quiz description.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for ldadvquiz_the_content filter.
*/
add_filter(
'ldadvquiz_the_content',
function( $quiz_description ) {
// May add any custom logic using $quiz_description.
// Always return $quiz_description.
return $quiz_description;
}
);