wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_parse_slug_list › WordPress Function
Since4.7.0
Deprecatedn/a
› wp_parse_slug_list ( $input_list )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
| Codex: | |
| Change Log: |
|
Cleans up an array, comma- or space-separated list of slugs.
Source
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
)
)
);
}