wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_parse_slug_list › WordPress Function

Seit4.7.0
Veraltetn/v
wp_parse_slug_list ( $input_list )
Parameter:
  • (array|string) $input_list List of slugs.
    Erforderlich: Ja
Gibt zurück:
  • (string[]) Sanitized array of slugs. May include an empty string. Keys
    are preserved from the input and `array_unique()` may leave
    gaps, so the result is not necessarily a list.
Definiert in:
Codex:
Changelog:
  • 5.1.0

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



Quellcode

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

	return array_unique(
		array_map(
			'sanitize_title',
			array_map(
				/*
				 * Cast booleans, integers, and floats to strings. Non-scalar types
				 * (including null) have already been filtered out by wp_parse_list().
				 */
				'strval',
				$input_list
			)
		)
	);
}