Browse: Home / Hooks /

learndash_essay_grading_response_meta_box_allowed_html

apply_filters( 'learndash_essay_grading_response_meta_box_allowed_html',  array $allowed_tags )

Filters list of allowed HTML tags in essay grading response meta box content.


Description #

Used in allowed_html paramter of wp_kses function.


Parameters #

$allowed_tags

(array) An array of allowed HTML tags in essay grading response.


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

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