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

In this article

Cleans up an array, comma- or space-separated list of slugs.

Parameters

$input_listarray|stringrequired
List of slugs.

Return

string[] Sanitized array of slugs.

Source

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

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

Changelog

VersionDescription
5.1.0Refactored to use wp_parse_list() .
4.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.