wp_parse_slug_list( array|string $list )
Clean up an array, comma- or space-separated list of slugs.
Description Description
Parameters Parameters
- $list
-
(array|string) (Required) List of slugs.
Return Return
(array) Sanitized array of slugs.
Source Source
File: wp-includes/functions.php
function wp_parse_slug_list( $list ) { if ( ! is_array( $list ) ) { $list = preg_split( '/[\s,]+/', $list ); } foreach ( $list as $key => $value ) { $list[ $key ] = sanitize_title( $value ); } return array_unique( $list ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |