wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_parse_slug_list › WordPress Function

Depuis4.7.0
Dépréciéen/a
wp_parse_slug_list ( $input_list )
Paramètres:
  • (array|string) $input_list List of slugs.
    Requis: Oui
Retourne:
  • (string[]) Sanitized array of slugs.
Défini(e) dans:
Codex:
Changelog:
  • 5.1.0

Cleans up an array, comma- or space-separated list 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 ) );
}