wordpress / latest / functions / wp_parse_slug_list.html

wp_parse_slug_list( array|string $list ): string[]

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. View all references

function wp_parse_slug_list( $list ) {
	$list = wp_parse_list( $list );

	return array_unique( array_map( 'sanitize_title', $list ) );
}

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
5.1.0 Refactored to use wp_parse_list() .
4.7.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_parse_slug_list