wp_parse_slug_list() WordPress Function
The wp_parse_slug_list() function is used to parse a list of slugs. It takes a list of slugs as a string and converts it into an array. The function is useful for sanitizing user input or for creating a list of slugs from a list of strings.
wp_parse_slug_list( array|string $list ) #
Cleans up an array, comma- or space-separated list of slugs.
Parameters
- $list
(array|string)(Required)List of slugs.
Return
(string[]) Sanitized array of slugs.
Source
File: wp-includes/functions.php
function wp_parse_slug_list( $list ) {
$list = wp_parse_list( $list );
return array_unique( array_map( 'sanitize_title', $list ) );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.1.0 | Refactored to use wp_parse_list(). |
| 4.7.0 | Introduced. |