wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_parse_slug_list › WordPress Function

Since4.7.0
已弃用n/a
wp_parse_slug_list ( $input_list )
参数:
  • (array|string) $input_list List of slugs.
    Required: Yes
返回:
  • (string[]) Sanitized array of slugs.
定义在:
文档:
Change Log:
  • 5.1.0

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



源码

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

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