Uses
Uses | Description |
---|---|
wp-includes/functions.php: wp_parse_list() | Cleans up an array, comma- or space-separated list of scalar values. |
Clean up an array, comma- or space-separated list of slugs.
(array|string) (Required) List of slugs.
(string[]) Sanitized array of slugs.
File: wp-includes/functions.php
function wp_parse_slug_list( $list ) { $list = wp_parse_list( $list ); return array_unique( array_map( 'sanitize_title', $list ) ); }
Version | Description |
---|---|
4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_parse_slug_list