apply_filters( 'wp_kses_allowed_html', array[] $html, string $context )

Filters the HTML tags that are allowed for a given context.


Description

HTML tags and attribute names are case-insensitive in HTML but must be added to the KSES allow list in lowercase. An item added to the allow list in upper or mixed case will not recognized as permitted by KSES.


Top ↑

Parameters

$html array[]
Allowed HTML tags.
$context string
Context name.

Top ↑

Source

File: wp-includes/kses.php. View all references

return apply_filters( 'wp_kses_allowed_html', $html, $context );


Top ↑

Changelog

Changelog
Version Description
3.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.