Sanitize a token list string, such as used in HTML rel and class attributes.
(string|array) (Required) List of tokens separated by spaces, or an array of tokens.
(string) Sanitized token string list.
File: wp-includes/widgets/class-wp-widget-media.php
public function sanitize_token_list( $tokens ) {
if ( is_string( $tokens ) ) {
$tokens = preg_split( '/\s+/', trim( $tokens ) );
}
$tokens = array_map( 'sanitize_html_class', $tokens );
$tokens = array_filter( $tokens );
return join( ' ', $tokens );
} | Version | Description |
|---|---|
| 4.8.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_widget_media/sanitize_token_list