apply_filters( 'learndash_essay_new_allowed_html', array $allowed_tags )
Filters list of allowed html tags in essay content.
Contents
Description #
Used in allowed_html paramter of wp_kses function.
Parameters #
- $allowed_tags
-
(array) An array of allowed HTML tags in essay content.
Source #
Examples #
<?php /** * Example usage for learndash_essay_new_allowed_html filter. */ add_filter( 'learndash_essay_new_allowed_html', function( $allowed_tags ) { // May add any custom logic using $allowed_tags. // Always return $allowed_tags. return $allowed_tags; } );