W3cubDocs

/WordPress

wp_parse_id_list( array|string $list )

Clean up an array, comma- or space-separated list of IDs.

Parameters

$list

(array|string) (Required) List of IDs.

Return

(int[]) Sanitized array of IDs.

Source

File: wp-includes/functions.php

function wp_parse_id_list( $list ) {
	$list = wp_parse_list( $list );

	return array_unique( array_map( 'absint', $list ) );
}

Changelog

Version Description
3.0.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_parse_id_list