apply_filters( 'wp_kses_uri_attributes', string[] $uri_attributes )
- Since
- 5.0.1
Filters the list of attributes that are required to contain a URL.
Description
Use this filter to add any data- attributes that are required to be validated as a URL.
Compatibility
- WordPress
- since 5.0.1
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$uri_attributesstring[]- HTML attribute names whose value contains a URL.
Where this hook fires · 1
wp-includes/kses.php:1260wp_kses_uri_attributes()
Source code
* validated as a URL. * * @since 5.0.1 * * @param string[] $uri_attributes HTML attribute names whose value contains a URL. */ $uri_attributes = apply_filters( 'wp_kses_uri_attributes', $uri_attributes ); return $uri_attributes;} /** * Callback for `wp_kses_split()`.Changelog
Introduced in 5.0.1. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.